当前位置: 首页 > 网络学院 > 客户端脚本教程 > JavaScript > JavaScript sqrt()方法
The sqrt() method returns the square root of a number.
aqrt()方法可以返回数字的开方后的结果
Math.sqrt(x) |
Parameter 参数 | Description 描述 |
---|---|
x | Required. A number 必选。数字 |
Note: The sqrt() method will return NaN if the parameter x is a negative number.
注意:如果x参数为负数那么返回的值就会成为NaN
In this example we will get the square root of different numbers:
在这个举例中我们将得到几组不同数字的开方结果:
<script type="text/javascript"> document.write(Math.sqrt(0) + "<br />") </script> |
The output of the code above will be:
输出结果为:
0 |
sqrt()
How to use sqrt() to get the square root of different numbers.
怎样使用sqrt()来得到不同数字的开方结果。