abs() |
It returns the absolute value of a number. |
acos() |
It returns the arccosine (in radians) of a number. |
asin() |
It returns the arcsine (in radians) of a number. |
atan() |
It returns the arctangent (in radians) of a number. |
atan2() |
It returns the arctangent of the quotient of its arguments. |
ceil() |
It returns the smallest integer, greater than or equal to a number. |
cos() |
It returns the cosine of a number. |
exp() |
It returns En, where N is the argument, and E is Euler's constant. |
floor() |
It returns the largest integer, less than or equal to a number. |
log() |
It returns the natural logarithm (base E) of a number. |
max() |
It returns the larger of two given numbers. |
min() |
It returns the smaller of two given numbers. |
pow() |
It returns base to the exponent power, that is, baseexponent. |
random() |
It returns the pseudo-random number between 0 and 1. |
round() |
It returns the value of a number rounded to the nearest integer. |
sin() |
It returns the sine of a number. |
sqrt() |
It returns the square root of a number. |
tan() |
It returns the tangent of a number. |