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