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