Usage
The Math.pow() function is used to return value of the base to the exponent Power.
|
Syntax
Math.pow(base, exponent);
|
var a=Math.pow(9,9);
var b=Math.pow(2,2);
var c=Math.pow(1,1);
var d=Math.pow(0,0);
var e=Math.pow(-1,-1);
document.write(a,b,c,d,e);
|
Output
387420489
4
1
1
-1
|