Home » JavaScript Math sinh() Method

JavaScript Math sinh() Method

by Online Tutorials Library

JavaScript Math sinh() method

The JavaScript math sinh() method returns the hyperbolic sine of the given number.

Syntax

The sinh() method is represented by the following syntax:

Parameter

num – A number.

Return

The hyperbolic sine of a number.

JavaScript Math sinh() method example

Here, we will understand sinh() method through various examples.

Example 1

Let’s see a simple example of sinh() method.

Test it Now

Output:

-1.1752011936438014  0  0.5210953054937474  3.626860407847019  

Example 2

Here, you can test sinh() method with your own test cases.

Test it Now

Next TopicJavaScript Math

You may also like