JavaScript Math Object
From Techotopia
The JavaScript Math object provides a collections of mathematical constants and methods for performing such tasks as generating random numbers, rounding, obtaining values such as PI and performing calculations.
JavaScript Math Object Methods
The following table lists the methods available with the Math object:
Method | Description |
---|---|
abs | Absolute value |
sin, cos, tan | Standard trigonometric functions; argument in radians |
acos, asin, atan, atan2 | Inverse trigonometric functions; return values in radians |
exp, log | Exponential and natural logarithm, base e |
ceil | Returns least integer greater than or equal to argument |
floor | Returns greatest integer less than or equal to argument |
min, max | Returns greater or lesser (respectively) of two arguments |
pow | Exponential; first argument is base, second is exponent |
random | Returns a random number between 0 and 1. |
round | Rounds argument to nearest integer |
sqrt | Square root |
JavaScript Math Object Properties
In addition the math object contains a number of properties for accessing mathematical constants:
Property | Description |
---|---|
E | Euler's constant |
LN2 | Natural log of 2 |
LN10 | Natural log of 10 |
LOG2E | Log base -2 of E |
LOG10E | Log base -10 of E |
PI | Value of Pi |
SQRT1_2 | Square root of 0.5 |
SQRT2 | Square root of 2 |