欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

在JavaScript中使用开平方根的sqrt()方法

程序员文章站 2022-10-15 12:19:24
 这个方法返回一个数的平方根。如果数的值是负的,开方返回nan。 语法 math.sqrt( x ) ; 下面是参数的详细信息:...

 这个方法返回一个数的平方根。如果数的值是负的,开方返回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