Math.expm1( x ) Math.exp ( x ) Math.hypot( x1,x2.. ) 相当于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 Math.exp ( x ) Math.hypot( x1,x2.. )