This topic has not yet been rated - Rate this topic

pow Method

Returns the value of a base expression taken to a specified power.

function pow(base : Number, exponent : Number) : Number
base

Required. The base value of the expression.

exponent

Required. The exponent value of the expression.

The pow method returns a numeric expression equal to baseexponent.

The following example illustrates the use of the pow method.

var x = Math.pow(10,3); // x is assigned the value 1000.

Other Resources

Did you find this helpful?
(1500 characters remaining)

Community Additions

ADD
© 2013 Microsoft. All rights reserved.