ES6 - Math.expm1(x) 函数



等价于 Math.exp(x) - 1。

语法

Math.expm1( x );   

参数

  • x − 代表一个数字

返回值

返回 Math.exp(x) - 1 的值

示例

console.log("---Math.expm1()---") 
console.log("Math.expm1(1) : "+Math.expm1(1)) 
console.log("Math.expm1(5.5) : "+Math.expm1(5.5))          

输出

---Math.expm1()--- 
Math.expm1(1) : 1.718281828459045 
Math.expm1(5.5) : 243.69193226422038            
广告