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 has to be get.
Returns
Hyperbolic sine of a number
Example:
<!DOCTYPE html> <html> <body> <script> document.writeln(Math.sinh(0.1)); </script> </body> </html>