Javascript Math sinh()

Introduction

The Math.sinh() function returns the hyperbolic sine of a number.

Math.sinh(x) // x is a number.
let a = Math.sinh(0); // 0
console.log(a);/*from   w w w . j  a va  2s. co m*/
a = Math.sinh(1); // 1.1752011936438014
console.log(a);



PreviousNext

Related