The JavaScript math sinh() method is used to get the hyperbolic sine of the given number.
Syntax:
Math.sinh(n)
Parameters
n: It represents the number whose hyperbolic sine have to be get.
Returns
Hyperbolic sine of a number
Example
<!DOCTYPE html> <html> <body> <script> document.writeln(Math.sinh(0.1)); </script> </body> </html> |
Output
0.10016675001984403 |
Please Share