当前位置: 首页 > 网络学院 > 客户端脚本教程 > JavaScript > JavaScript pow()方法
The pow() method returns the value of x to the power of y (xy).
pow()方法可返回xy的结果
Math.pow(x,y) |
Parameter 参数 | Description 描述 |
---|---|
x | Required. A number 必选。一个数字 |
y | Required. A number 必选。一个数字 |
In the following example we will use the pow() method on different number combinations:
这个举例中我们将对不用的数字使用pow()方法:
<script type="text/javascript"> document.write(Math.pow(0,0) + "<br />") </script> |
The output of the code above will be:
输出结果为:
1 |
pow()
How to use pow().
怎样使用pow()