ES6 - funzione matematica expm1 (X)
Equivalente a Math.exp (x) - 1.
Sintassi
Math.expm1( x );
Parametro
x - rappresenta un numero
Valore di ritorno
Restituisce il valore di Math.exp (x) - 1
Esempio
console.log("---Math.expm1()---")
console.log("Math.expm1(1) : "+Math.expm1(1))
console.log("Math.expm1(5.5) : "+Math.expm1(5.5))
Produzione
---Math.expm1()---
Math.expm1(1) : 1.718281828459045
Math.expm1(5.5) : 243.69193226422038