Javascript - Math sinh() Method

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

Description

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

Syntax

Math.sinh(x)

Parameter Values

Parameter Require Description
x Required. A number

Return

A Number

Example

Return the hyperbolic sine of a number:

Demo

//display the hyperbolic sine value of 3.
console.log(Math.sinh(3));

Result