Microsoft® JScript pow Method |
Language Reference Version 1 |
Returns the value of a base expression taken to a specified power.
Math.pow(base, exponent)The pow method syntax has these parts:
Part Description base The base value of the expression. exponent The exponent value of the expression.
In the following example, a numeric expression equal to baseexponent returns 1000.
Math.pow(10,3);