This commit is contained in:
Lana Steuck 2016-06-16 20:57:01 +00:00
commit 05e93094b7

View File

@ -99,3 +99,39 @@ Function.prototype.apply=invokes the function with the given this-reference and
Function.prototype.call=invokes the function with the given this-reference and arguments
Function.prototype.bind=returns a new function with bound this-reference and arguments
Math.abs=returns absolute value of the argument
Math.acos=returns an approximation to the arc cosine of argument, return value is expressed in radians
Math.asin=returns an approximation to the arc sine of argument, return value is expressed in radians
Math.atan=returns an approximation to the arc tangent of argument, return value expressed in radians
Math.atan2=returns an approximation to the arc tangent of the quotient argument1/argument2, signs of argument1 and argument2 are used to determine quadrant of the result
Math.ceil=returns smallest value that is not less than argument and is equal to a mathematical integer, returns argument itself if it is an integer
Math.cos=returns an approximation to the cosine of argument, argument is expressed in radians
Math.exp=returns an approximation to the value of exponential function of argument, e raised to the power of argument where e is the base of natural logarithms
Math.floor=returns the greatest value that is not greater than argument and is equal to mathematical integer, returns argument itself if it is an integer
Math.log=returns an approximation to the natural logarithm of argument
Math.max=returns the largest of the given arguments
Math.min=returns the smallest of the given arguments
Math.pow=returns an approximation to the result of raising argument1 to the power of argument2
Math.random=returns random value between 0 to 1, inclusive 0 and exclusive 1
Math.round=returns mathematical integer value that is closest to the given argument
Math.sin=returns an approximation to the sine of given argument, argument is expressed in radians
Math.sqrt=returns an approximation to the square root of given argument
Math.tan=returns an approximation to the tangent of given argument