浅谈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
推荐阅读
-
在vue中,v-for的索引index在html中的使用方法
-
JavaScript控制输入框中只能输入中文、数字和英文的方法【基于正则实现】
-
使用JavaScript保存文本文件到本地的两种方法
-
JavaScript中判断为整数的多种方式及保留两位小数的方法
-
详解java中的深拷贝和浅拷贝(clone()方法的重写、使用序列化实现真正的深拷贝)
-
Python机器学习之scikit-learn库中KNN算法的封装与使用方法
-
浅谈jquery回调函数callback的使用方法
-
使用find命令查找Linux中的隐藏文件的方法
-
使用JavaScript实现node.js中的path.join方法
-
PHP5中使用PDO连接数据库的方法