JavaScript 中的 Math.asinh() 函数

htmljavascriptweb developmentfront end technology

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

语法

其语法如下

Math.asinh(0.5)

示例

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

输出

双曲反正弦值:5.192987713658941
双曲反正弦值(度):297.53627905594817

相关文章