JavaScript Math sqrt方法
描述
该方法返回一个数的平方根。如果该数是负数,sqrt 返回 NaN。
语法
其语法如下:
Math.sqrt( x ) ;
参数详情
x - 一个数字
返回值
返回给定数字的平方根。
示例
尝试以下示例程序。
<html>
<head>
<title>JavaScript Math sqrt() Method</title>
</head>
<body>
<script type = "text/javascript">
var value = Math.sqrt( 0.5 );
document.write("First Test Value : " + value );
var value = Math.sqrt( 81 );
document.write("<br />Second Test Value : " + value );
var value = Math.sqrt( 13 );
document.write("<br />Third Test Value : " + value );
var value = Math.sqrt( -4 );
document.write("<br />Fourth Test Value : " + value );
</script>
</body>
</html>
输出
First Test Value : 0.7071067811865476
Second Test Value : 9
Third Test Value : 3.605551275463989
Fourth Test Value : NaN