目录

JavaScript Math.asinh()

Examples

let x = Math.asinh(0);
Try it Yourself »
let x = Math.asinh(1);
Try it Yourself »

Description

The Math.asinh() method returns the hyperbolic arc-sine of a number.



Syntax

Math.asinh( x)

Parameters

Parameter Description
x Required.
A number.

Return Value

Type Description
Number The hyperbolic arc-sine of the parameter.
NaN if the parameter is not numeric.


Browser Support

Math.asinh() is an ECMAScript6 (ES6) feature.

ES6 (JavaScript 2015) is supported in all modern browsers:

Chrome Edge Firefox Safari Opera
Yes Yes Yes Yes Yes

Math.asinh() is not supported in Internet Explorer 11 (or earlier).