ฟังก์ชัน acosh() ของออบเจกต์ Math ยอมรับตัวเลขและส่งกลับค่าโคไซน์อาร์คไฮเปอร์โบลิกในหน่วยเรเดียน หากต้องการแปลงค่าผลลัพธ์เป็นองศา ให้คูณด้วย 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