The sinh() method returns the hyperbolic sine of a number.
The sinh() method returns the hyperbolic sine of a number.
Math.sinh(x)
Parameter | Require | Description |
---|---|---|
x | Required. | A number |
A Number
Return the hyperbolic sine of a number:
//display the hyperbolic sine value of 3.
console.log(Math.sinh(3));