JavaScript asinh() Method
THE WORLD'S LARGEST WEB DEVELOPER SITE

JavaScript asinh() Method

❮ JavaScript Math Object

Example

Return the hyperbolic arcsine of a number:

Math.asinh(1);
Try it Yourself »

Definition and Usage

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


Browser Support

Method
asinh() 38 12 25 8 25

Syntax

Math.asinh(x)

Parameter Values

Parameter Description
x Required. A number

Technical Details

Return Value: A Number
JavaScript Version: ECMAScript 6

❮ JavaScript Math Object