JavaScript中的Math.sinh()函数
sinh()Math对象的功能接受一个角度(以弧度为单位)并返回其双曲正弦值。
语法
其语法如下
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