JavaScript 中的 Math.sinh() 函数


Math 对象的 sinh() 函数接受一个角度(以弧度为单位)并返回其双曲正弦值。

语法

语法如下

Math.sinh(90)

示例

 实时演示

<html>
<head>
   <title>JavaScript Example</title>
</head>
<body>
   <script type="text/javascript">
      var result = Math.sinh(90);
      document.write("Hyperbolic sine value of the given angle: "+result);
   </script>
</body>
</html>

输出

Hyperbolic sine value of the given angle: 6.102016471589204e+38

已更新:2020 年 6 月 25 日

43 位浏览

开启您的 职业生涯

完成课程以获得认证

开始学习
广告