JavaScript Math.atanh( )
The Math.atanh() function in JavaScript is used to return the hyperbolic arctangent of a number.
Math.atanh (x) = arctanh(x) = y such that tanh (y) = x
atanh() is a static method of Math, therefore it is always used as Math.atanh(), rather than as a method of a Math object created.
Syntax:
Math.atanh(value)
Parameters: This function accepts a single value parameter which is the number whose hyperbolic arc-tangent you want to know.
Returns: It returns the hyperbolic arc-tangent of the given number.
Examples:
Input : Math.atanh(1) Output : Infinity Input : Math.atanh(0) Output : 0 Input : Math.atanh(2) Output : NaN Input : Math.atanh(0.5) Output : 0.5493061443340548
- Example 1: When 1 is passed as a parameter.
<scripttype="text/javascript">document.write("Output : " + Math.atanh(1));</script>chevron_rightfilter_noneOutput:
Output : Infinity
- Example 2: When 0 is passed as a parameter.
<scripttype="text/javascript">document.write("Output : " + Math.atanh(0));</script>chevron_rightfilter_noneOutput:
Output : 0
- Examplw 3: When 2 is passed as a parameter.
<scripttype="text/javascript">document.write("Output : " + Math.atanh(2));</script>chevron_rightfilter_noneOutput:
Output : NaN
- Example 4: When 0.5 is passed as a parameter.
<scripttype="text/javascript">document.write("Output : " + Math.atanh(0.5));</script>chevron_rightfilter_noneOutput:
Output : 0.5493061443340548
Supported Browsers: The browsers supported by JavaScript Math.atanh( ) function are listed below:
- Google Chrome 38.0
- Internet Explorer 12.0
- Firefox 25.0
- Opera 25.0
- Safari 8.0
Recommended Posts:
- Introduction to JavaScript Course | Learn how to Build a task tracker using JavaScript
- JavaScript Course | Understanding Code Structure in JavaScript
- JavaScript Course | Printing Hello World in JavaScript
- JavaScript Course | Logical Operators in JavaScript
- JavaScript Course | Conditional Operator in JavaScript
- JavaScript Course | Data Types in JavaScript
- JavaScript Course | Objects in JavaScript
- JavaScript Course | JavaScript Prompt Example
- JavaScript Course | Loops in JavaScript
- JavaScript Course | Variables in JavaScript
- JavaScript Course | Functions in JavaScript
- JavaScript Course | Operators in JavaScript
- JavaScript vs Python : Can Python Overtop JavaScript by 2020?
- How to include a JavaScript file in another JavaScript file ?
- JavaScript | Let
If you like GeeksforGeeks and would like to contribute, you can also write an article using contribute.geeksforgeeks.org or mail your article to contribute@geeksforgeeks.org. See your article appearing on the GeeksforGeeks main page and help other Geeks.
Please Improve this article if you find anything incorrect by clicking on the "Improve Article" button below.



