Math Static Method
↔
Math.abs(x)
[Math
](math) [Static Method
](static-method) to return absolute positive value of x
Math.acos(x)
[Math
](math) [Static Method
](static-method) to return arccosine of x (in radians)
Math.asin(x)
[Math
](math) [Static Method
](static-method) to return arcsine of x (in radians)
Math.atan(x)
[Math
](math) [Static Method
](static-method) to return arctangent of x (in radians)
Math.atan2(y,x)
[Math
](math) [Static Method
](static-method) to return arctangent of quotient of Argument
Math.ceil(x)
[Math
](math) [Static Method
](static-method) to return x rounded up to nearest integer
Math.cos(x)
[Math
](math) [Static Method
](static-method) to return cosine of x (in radians)
Math.exp(x)
[Math
](math) [Static Method
](static-method) to return e^{x}
Math.floor(x)
[Math
](math) [Static Method
](static-method) to return x rounded down to nearest integer
Math.log(x)
[Math
](math) [Static Method
](static-method) to return natural log (base E) of x
Math.max(...num)
[Math
](math) [Static Method
](static-method) to return largest number in ...numbers
Math.min(...num)
[Math
](math) [Static Method
](static-method) to return smallest number in ...numbers
Math.pow(x,y)
[Math
](math) [Static Method
](static-method) to return x^y
Math.random()
[Math
](math) [Static Method
](static-method) to return Pseudorandom number between 0 & 1
Math.round(x)
[Math
](math) [Static Method
](static-method) to return x rounded to nearest integer
Math.sin(x)
[Math
](math) [Static Method
](static-method) to return sine of x (in radians)
Math.sqrt(x)
[Math
](math) [Static Method
](static-method) to return square root of x
Math.tan(x)
[Math
](math) [Static Method
](static-method) to return tangent of angle (in radians)
References
Math.tan(x)
↔ [Math
](math) [Static Method
](static-method) to return tangent of angle (in radians)Math.sqrt(x)
↔ [Math
](math) [Static Method
](static-method) to return square root of xMath.sin(x)
↔ [Math
](math) [Static Method
](static-method) to return sine of x (in radians)Math.round(x)
↔ [Math
](math) [Static Method
](static-method) to return x rounded to nearest integerMath.random()
↔ [Math
](math) [Static Method
](static-method) to return Pseudorandom number between 0 & 1Math.pow(x,y)
↔ [Math
](math) [Static Method
](static-method) to return x^yMath.min(...num)
↔ [Math
](math) [Static Method
](static-method) to return smallest number in ...numbersMath.max(...num)
↔ [Math
](math) [Static Method
](static-method) to return largest number in ...numbersMath.log(x)
↔ [Math
](math) [Static Method
](static-method) to return natural log (base E) of xMath.floor(x)
↔ [Math
](math) [Static Method
](static-method) to return x rounded down to nearest integerMath.exp(x)
↔ [Math
](math) [Static Method
](static-method) to return e^{x}Math.cos(x)
↔ [Math
](math) [Static Method
](static-method) to return cosine of x (in radians)Math.ceil(x)
↔ [Math
](math) [Static Method
](static-method) to return x rounded up to nearest integerMath.atan2(y,x)
↔ [Math
](math) [Static Method
](static-method) to return arctangent of quotient of ArgumentMath.atan(x)
↔ [Math
](math) [Static Method
](static-method) to return arctangent of x (in radians)Math.asin(x)
↔ [Math
](math) [Static Method
](static-method) to return arcsine of x (in radians)Math.acos(x)
↔ [Math
](math) [Static Method
](static-method) to return arccosine of x (in radians)Math.abs(x)
↔ [Math
](math) [Static Method
](static-method) to return absolute positive value of x