This page is Ready to Use

Notice: The WebPlatform project, supported by various stewards between 2012 and 2015, has been discontinued. This site is now available on github.

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