In a hurry? Click here to get started.
Learn Javascript math object properties and methods with these customizable flashcards. The cards can be printed or studied online. The flashcard set contains the 8 Javascript math object properties and 18 math object methods. You can customize the flashcard content, border style, card size, border color, and paper size to your requirements. After customizing, the flashcard set can be printed or downloaded as a PDF document in US Letter or A4 format.
Math.E | Euler's constant (2.718) |
Math.LN2 | natural logarithm of 2 (0.693) |
Math.LN10 | natural logarithm of 10 (2.303) |
Math.LOG2E | base 2 logarithm of Euler's number (1.443) |
Math.LOG10E | base 10 logarithm of Euler's number (0.434) |
Math.PI | PI (3.14159) |
Math.SQRT2 | square root of 2 (1.414) |
Math.SQRT1_2 | square root of 1/2 (0.707) |
abs(x) | absolute value of x |
acos(x) | arccosine of x, in radians |
asin(x) | arcsine of x, in radians |
atan(x) | arctangent of x, in radians |
atan2(y,x) | arctangent of the quotient of its arguments |
ceil(x) | rounds x upwards to the nearest integer |
cos(x) | cosine of x (x is given in radians) |
exp(x) | Euler's constant to the power of x |
floor(x) | rounds x downwards to the nearest integer |
log(x) | natural logarithm (base E) of x |
max(x,y,...,n) | number with the highest value |
min(x,y,...,n) | number with the lowest value |
pow(x,y) | value of x to the power of y |
random() | pseudo-random number between 0(inclusive) and 1(exclusive) |
round(x) | rounds x to the nearest integer |
sin(x) | sine of x (x is given in radians) |
sqrt(x) | square root of x |
tan(x) | tangent of a number (x is given in radians) |