JavaScript sinh() Method
THE WORLD'S LARGEST WEB DEVELOPER SITE

JavaScript sinh() Method

❮ JavaScript Math Object

Example

Return the hyperbolic sine of a number:

Math.sinh(3);
Try it Yourself »

Definition and Usage

The sinh() method returns the hyperbolic sine of a number.


Browser Support

Method
sinh) 38  12 25 8 25

Syntax

Math.sinh(x)

Parameter Values

Parameter Description
x Required. A number


Technical Details

Return Value: A Number
JavaScript Version: ECMAScript 6

❮ JavaScript Math Object