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

浅谈JavaScript中的Math.atan()方法的使用

程序员文章站 2023-01-07 13:12:28
 此方法返回弧度的反正切。atan方法返回一个在-pi/2和π/2弧度之间的数值。 语法 math.atan( x ) ; 下面是参数的...

 此方法返回弧度的反正切。atan方法返回一个在-pi/2和π/2弧度之间的数值。
语法

math.atan( x ) ;

下面是参数的详细信息:

  •     x : 一个数字

返回值:

  • 返回一个数弧度的反正切值

例子:

<html>
<head>
<title>javascript math atan() method</title>
</head>
<body>
<script type="text/javascript">

var value = math.atan(-1);
document.write("first test value : " + value ); 
 
var value = math.atan(.5);
document.write("<br />second test value : " + value ); 

var value = math.atan(30);
document.write("<br />third test value : " + value ); 

var value = math.atan("string");
document.write("<br />fourth test value : " + value ); 
</script>
</body>
</html>

这将产生以下结果:

first test value : -0.7853981633974483
second test value : 0.4636476090008061
third test value : 1.5374753309166493
fourth test value : nan