Javascript - Math asinh() Method

The asinh() method returns the hyperbolic arcsine of a number.

Description

The asinh() method returns the hyperbolic arcsine of a number.

Syntax

Math.asinh(x)

Parameter Values

Parameter RequireDescription
x Required. A number

Return

A Number

Example

Return the hyperbolic arcsine of a number:

Demo

//display the hyperbolic arcsine of 1
console.log(Math.asinh(1));

Result