Math ऑब्जेक्ट का atanh () फ़ंक्शन एक संख्या को स्वीकार करता है और रेडियन में इसका हाइपरबोलिक चाप आर्कटेंजेंट मान देता है। परिणामी मान को डिग्री में बदलने के लिए, इसे 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