| abs() | Return the absolute value of a number. |
| acos() | Return the arccosine of a number in radians. |
| acosh() | Return the hyperbolic arc-cosine of a number. |
| asin() | Return the arcsine of a number in radians |
| asinh() | Return the arctangent of a number in radians. |
| atan() | Return the arctangent of a number in radians. |
| atan2() | Return the arctangent of the quotient of its arguments. |
| atanh() | Return the hyperbolic arctangent of a number. |
| cbrt() | Find the cube root of a number. |
| ceil() | Passed as a parameter to its nearest integer in an Upward direction of Rounding. |
| clz32() | Stands for “Count Leading Zeroes 32”. |
| cos() | Return the cosine of a number. |
| cosh() | Calculate the value of the hyperbolic cosine of a number. |
| exp() | Return ex, where x is the argument, and e is Euler’s number. |
| expm1() | Get the value of ep-1, where p is any given number. |
| floor() | The number is passed as a parameter to its nearest integer in a Downward direction of rounding. |
| fround() | Find the nearest 32-bit single-precision float representation of a given Number. |
| hypot() | Calculate the square root of the sum of squares of numbers passed to it as arguments. |
| imul() | Calculate the result of the 32-bit multiplication of the two integers passed as parameters to it |
| log() | Return the natural logarithm (base e) of a number. |
| log1p() | Gives the value of the natural logarithm of 1 + p number. |
| log2() | Gives the value of base 2 logarithms of any number. |
| log10() | Gives the value of base 10 logarithms of any number. |
| max() | Return the largest of zero or more numbers. |
| min() | Return the lowest-valued number passed in the method. |
| pow() | The value of the number raised to some exponent. |
| random() | Return a floating-point pseudo-random number between range [0,1), 0 (inclusive), and 1 (exclusive). |
| round( ) | The number is passed as a parameter to its nearest integer. |
| sign( ) | Sign of a number, indicating whether the number specified is negative or positive. |
| sin() | Return the sine of a number. |
| sinh() | The root of the number is passed as a parameter to the function. |
| sqrt( ) | The root of the number is passed as a parameter to the function. |
| tan() | Return the tangent of a number. |
| tanh() | Calculate the value of the hyperbolic tangent of a number. |
| trunc() | Return the integer part of a floating-point number by removing the fractional digits. |