Math.asinh( ) In JavaScript
Math.asinh() function is used to return the hyperbolic arc-sine of a number. The asinh() is a static method of Math, therefore it is always used as Math.asinh(), rather than as a method of a math object created.
Syntax:
Math.asinh(value)
Parameter: This function accept single parameter value which is the number whose hyperbolic arc-sine you want to know.
Returns: It returns the hyperbolic arc-sine of the given number.
Examples:
Input : Math.asinh(2) Output : 1.4436354751788103 Input : Math.asinh(0) Output : 0 Input : Math.asinh(-1) Output : -0.881373587019543
Codes for the Math.asinh() function are provided below:
<script type = "text/javascript"> // 2 is passed as a parameter document.write("Output : " + Math.asinh(2)); </script> |
Output:
Output : 1.4436354751788103
<script type = "text/javascript"> // 0 is passed as a parameter document.write("Output : " + Math.asinh(0)); </script> |
Output:
Output : 0
<script type = "text/javascript"> // 1 is passed as a parameter document.write("Output : " + Math.asinh(1)); </script> |
Output:
Output : 0.881373587019543
<script type = "text/javascript"> // -1 is passed as a parameter document.write("Output : " + Math.asinh(-1)); </script> |
Output:
Output : -0.881373587019543
Supported Browsers: The browsers supported by JavaScript Math.asinh( ) 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 | Logical Operators in JavaScript
- JavaScript Course | Conditional Operator in JavaScript
- JavaScript Course | Data Types in JavaScript
- JavaScript Course | Printing Hello World in JavaScript
- JavaScript Course | Loops in JavaScript
- JavaScript Course | Functions in JavaScript
- JavaScript Course | JavaScript Prompt Example
- JavaScript Course | Variables in JavaScript
- JavaScript Course | Objects 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 ?
- this in JavaScript
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.



