Math
is a built-in object with properties and methods for mathematical constants and functions. It is not a function object. Math works with the Number type. Math functions are all static, so each starts with Math.myfunctioncallhere()
. Math.PI
and Math.random()
are two Math functions used a lot when doing calculations.
Static properties
Math.E
-
Euler's number and the base of natural logarithms; approximately
2.718
. Math.LN10
-
Natural logarithm of
10
; approximately2.303
. Math.LN2
-
Natural logarithm of
2
; approximately0.693
. Math.LOG10E
-
Base-10 logarithm of
E
; approximately0.434
. Math.LOG2E
-
Base-2 logarithm of
E
; approximately1.443
. Math.PI
-
Ratio of a circle's circumference to its diameter; approximately
3.14159
. Math.SQRT1_2
-
Square root of ½; approximately
0.707
. Math.SQRT2
-
Square root of
2
; approximately1.414
. -
The initial value of the
@@toStringTag
property is the string"Math"
. This property is used inObject.prototype.toString()
.