nashorn/src/jdk.scripting.nashorn/share/classes/jdk/nashorn/internal/runtime/resources/Functions.properties
changeset 39074 25390f2ae3ac
parent 35323 0ef5f8b7cd23
child 39899 b3d60e304c3e
equal deleted inserted replaced
38921:d53037a90c44 39074:25390f2ae3ac
    97 Function.prototype.apply=invokes the function with the given this-reference and arguments array
    97 Function.prototype.apply=invokes the function with the given this-reference and arguments array
    98 
    98 
    99 Function.prototype.call=invokes the function with the given this-reference and arguments
    99 Function.prototype.call=invokes the function with the given this-reference and arguments
   100 
   100 
   101 Function.prototype.bind=returns a new function with bound this-reference and arguments
   101 Function.prototype.bind=returns a new function with bound this-reference and arguments
       
   102 
       
   103 Math.abs=returns absolute value of the argument
       
   104 
       
   105 Math.acos=returns an approximation to the arc cosine of argument, return value is expressed in radians
       
   106 
       
   107 Math.asin=returns an approximation to the arc sine of argument, return value is expressed in radians
       
   108 
       
   109 Math.atan=returns an approximation to the arc tangent of argument, return value expressed in radians
       
   110 
       
   111 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
       
   112 
       
   113 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
       
   114 
       
   115 Math.cos=returns an approximation to the cosine of argument, argument is expressed in radians
       
   116 
       
   117 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
       
   118 
       
   119 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
       
   120 
       
   121 Math.log=returns an approximation to the natural logarithm of argument
       
   122 
       
   123 Math.max=returns the largest of the given arguments
       
   124 
       
   125 Math.min=returns the smallest of the given arguments
       
   126 
       
   127 Math.pow=returns an approximation to the result of raising argument1 to the power of argument2
       
   128 
       
   129 Math.random=returns random value between 0 to 1, inclusive 0 and exclusive 1
       
   130 
       
   131 Math.round=returns mathematical integer value that is closest to the given argument
       
   132 
       
   133 Math.sin=returns an approximation to the sine of given argument, argument is expressed in radians
       
   134 
       
   135 Math.sqrt=returns an approximation to the square root of given argument
       
   136 
       
   137 Math.tan=returns an approximation to the tangent of given argument