Hàm acosh () của đối tượng Math chấp nhận một số và trả về giá trị cosin cung hypebol của nó tính bằng radian. Để chuyển giá trị kết quả thành độ, hãy nhân nó với 180 và chia kết quả cho 3,14159 (giá trị pi).
Cú pháp
Cú pháp của nó như sau
Math.acosh(0.5)
Ví dụ
<html> <head> <title>JavaScript Example</title> </head> <body> <script type="text/javascript"> var result = Math.acosh(90); document.write("Hyperbolic arccosine value: "+result); document.write("<br>"); document.write("Hyperbolic arccosine value in degrees: "+result*180/Math.PI); </script> </body> </html>
Đầu ra
Hyperbolic arccosine value: 5.192925985263684 Hyperbolic arccosine value in degrees: 297.5327422794238