Computer >> Máy Tính >  >> Lập trình >> Javascript

Hàm Math.tanh () trong JavaScript

Hàm tanh () của đối tượng Math chấp nhận một góc (tính bằng radian) và trả về giá trị tiếp tuyến hyperbol của nó.

Cú pháp

Cú pháp của nó như sau

Math.tanh(90)

Ví dụ

<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>

Đầu ra

Hyperbolic tangent value of the given angle: 1