Math.tanh() 函数(JavaScript)
Math 对象的 tanh() 函数接收一个角度(以弧度为单位),并返回其双曲正切值。
语法
它的语法如下
Math.tanh(90)
示例
<html> <head> <title>JavaScript Example</title> </head> <body> <script type="text/javascript"> var result = Math.tanh(90); document.write("Hyperbolic tangent value of the given angle: "+result); </script> </body> </html>
输出
Hyperbolic tangent value of the given angle: 1
广告