Javascript Math asinh()

Introduction

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

Math.asinh(x) // x is a number.
let a = Math.asinh(1);  // 0.881373587019543
console.log(a);//w ww  .ja v  a 2s.  c  o m
Math.asinh(0);  // 0
console.log(a);



PreviousNext

Related