pow
Summary
Returns the value of a base expression taken to a specified power.
Syntax
Math.pow( base , exponent )
- base
- Required. The base value of the expression.
- exponent
- Required. The exponent value of the expression.
Examples
In the following example, a numeric expression equal to baseexponent returns 1000.
Math.pow( 10,3 ) ;
See also
Other articles
Attributions
Microsoft Developer Network: Windows Internet Explorer JavaScript reference Article