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

JavaScript Math.asinh() Method

 JavaScript Math Object

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

Since asinh() is a static method of Math, you always use it asMath.asinh()It is not used as a method of creating a Math object.

Syntax:

Math.asinh(x)
Math.asinh(3);
Test and See‹/›

Browser Compatibility

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

Method
Math.asinh()382525812

Parameter Value

ParameterDescription
xValue

Technical Details

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

 JavaScript Math Object