JavaScript 中的 Math.atan2() 函数

htmljavascriptweb developmentfront end technology

Math 对象的 atan2() 函数接受两个代表 y 轴和 x 轴的数字,并以弧度为单位返回给定点与正 x 轴之间的角度。要将结果值转换为度数,请将其乘以 180,然后将结果除以 3.14159(pi 值)。

语法

其语法如下

Math.atan2(10, 5)

示例

<html>
<head>
   <title>JavaScript 示例</title>
</head>
<body>
   <script type="text/javascript">
      var result = Math.atan2(10, 5);
      document.write("双曲反正切值:"+result);
      document.write("<br>");
      document.write("双曲反正切值(度):"+result*180/Math.PI);
   </script>
</body>
</html>

输出

双曲反正切值:1.1071487177940904
双曲反正切值(度):63.43494882292201

相关文章