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

    
    console.log(Math.sinh(0));
    // 0

    console.log(Math.sinh(1));
    // 1.1752011936438014

    console.log(Math.sinh(-1));
    // -1.1752011936438014

    console.log(Math.sinh(2));
    // 3.626860407847019