| Classes |
Complex - Provides methods for manipulating complex numbers |
| Functions |
abs(number) - Calculates the absolute value of a number |
acos(number) - Calculates the arc cosine of a number |
asin(number) - Calculates the arc sine of a number |
atan(number) - Calculates the arc tangent of a number |
atan2(number,number) - Calculates the arc tangent of two numbers |
ceil(number) - Rounds a number up to the nearest integer value |
cos(number) - Calculates the cosine of a number |
exp(number) - Calculates the value of e raised to the specified power |
floor(number) - Rounds a number down to the nearest integer value |
getRandMax() - Finds the maximum value that Math.rand() can return |
isDouble(number) - Checks if a number is represented internally as a double |
isLong(number) - Checks if a number is represented internally as a long |
log(number) - Calculates the natural logarithm of a number |
log10(number) - Calculates the base 10 logarithm of a number |
max(number,number) - Determines which of two numbers is the larger |
min(number,number) - Determines which of two numbers is the smaller |
pi() - Returns the number Pi |
pow(number,number) - Calculates the value of a number raised to a power |
rand() - Generates a pseudo-random number |
round(number) - Rounds a number to the nearest integer |
sin(number) - Calculates the sine of a number |
sqrt(number) - Calculates the square root of a number |
srand(number) - Seeds the pseudo-random number generator |
tan(number) - Calculates the tangent of a number |