Hàm asinh () của đối tượng Math chấp nhận một số và trả về giá trị sin cung hyperbol 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.asinh(0.5)
Ví dụ
<html> <head> <title>JavaScript Example</title> </head> <body> <script type="text/javascript"> var result = Math.asinh(90); document.write("Hyperbolic arcsine value: "+result); document.write("<br>"); document.write("Hyperbolic arcsine value in degrees: "+result*180/Math.PI); </script> </body> </html>
Đầu ra
Hyperbolic arcsine value: 5.192987713658941 Hyperbolic arcsine value in degrees: 297.53627905594817