The Math exp() static method returns e raised to the power of a number.

    
    console.log(Math.exp(0));
    // 1

    console.log(Math.exp(1));
    // 2.718281828459

    console.log(Math.exp(-1));
    // 0.36787944117144233

    console.log(Math.exp(2));
    // 7.38905609893065