JavaScript Math.pow 方法
Math.pow(x,y) 方法用于取得 x 的 y 次幂的值。语法如下:
Math.pow( x,y )
参数 | 说明 |
---|---|
x | 必需。底数,必须是数字。 |
y | 必需。幂数,必须是数字。 |
Math.pow 方法实例
<script language="JavaScript"> document.write( Math.pow(0,0) + "<br />" ); document.write(Math.pow(0,1) + "<br />") document.write( Math.pow(1,0) + "<br />" ); document.write( Math.pow(2,2) + "<br />" ); document.write( Math.pow(2,5) ); </script>
运行该例子,输出:
1 0 1 4 32