Math 객체의 asinh() 함수는 숫자를 받아 쌍곡선 아크 사인 값을 라디안 단위로 반환합니다. 결과 값을 각도로 변환하려면 180을 곱하고 결과를 3.14159(pi 값)로 나눕니다.
구문
구문은 다음과 같습니다.
Math.asinh(0.5)
예시
<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>
출력
Hyperbolic arcsine value: 5.192987713658941 Hyperbolic arcsine value in degrees: 297.53627905594817