pow Method (JScript 5.6)
Returns the value of a base expression taken to a specified power.
Math.pow(base, exponent)
Arguments
- base
Required. The base value of the expression.
- exponent
Required. The exponent value of the expression.
Example
In the following example, a numeric expression equal to baseexponent returns 1000.
Math.pow(10,3);
Requirements
Applies To: Math Object (JScript 5.6)