English | 简体中文 | 繁體中文 | Русский язык | Français | Español | Português | Deutsch | 日本語 | 한국어 | Italiano | بالعربية

JavaScript Math.sinh() Method

 JavaScript Math Object

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

Since sinh() is a static method of Math, you always use it asMath.sinh(), rather than used as a method of the Math object created.

Syntax:

Math.sinh(x)
Math.sinh(1);
Test See‹/›

Browser Compatibility

The number in the table specifies the first browser version that fully supports the Math.sinh() method:

Method
Math.sinh()382525812

Parameter Value

ParameterDescription
xValue

Technical Details

Return Value:Hyperbolic Sine of a Given Number
JavaScript Version:ECMAScript 6

 JavaScript Math Object