JavaScript 中的 Math.acosh() 函数

htmljavascriptweb developmentfront end technology

Math 对象的 acosh() 函数接受一个数字并以弧度返回其双曲反余弦值。要将结果值转换为度数,请将其乘以 180,然后将结果除以 3.14159(pi 值)。

语法

其语法如下

Math.acosh(0.5)

示例

<html>
<head>
   <title>JavaScript 示例</title>
</head>
<body>
   <script type="text/javascript">
      var result = Math.acosh(90);
      document.write("双曲反余弦值:"+result);
      document.write("<br>");
      document.write("双曲反余弦值(度数):"+result*180/Math.PI);
   </script>
</body>
</html>

输出

双曲反余弦值:5.192925985263684
双曲反余弦值(度):297.5327422794238

相关文章