ฟังก์ชัน atanh() ของออบเจกต์ Math ยอมรับตัวเลขและส่งกลับค่าอาร์กแทนเจนต์แบบไฮเปอร์โบลิกอาร์กแทนเจนต์ในหน่วยเรเดียน หากต้องการแปลงค่าผลลัพธ์เป็นองศา ให้คูณด้วย 180 แล้วหารผลลัพธ์ด้วย 3.14159 (ค่า pi)
ไวยากรณ์
ไวยากรณ์ของมันคือดังต่อไปนี้
Math.atanh(0.5)
ตัวอย่าง
<html> <head> <title>JavaScript Example</title> </head> <body> <script type="text/javascript"> var result = Math.atanh(0.5); document.write("arctangent value: "+result); document.write("<br>"); document.write("hyperbolic arctangent value in degrees: "+result*180/Math.PI); </script> </body> </html>
ผลลัพธ์
arctangent value: 0.5493061443340548 arctangent value in degrees: 31.47292373094538