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