Math.exp ( x ) Math.cbrt ( x ) Math.expm1( x ) 相当于Math.pow(Math.E,x)。 语法 Math.exp ( x ) ; 参数 x - 代表一个数字 返回值 返回变量x的指数值。 例 console.log("---Math.exp()---") console.log("Math.exp(1) : "+Math.exp(1)) console.log("Math.exp(5.5) : "+Math.exp(5.5)) 输出 ---Math.exp()--- Math.exp(1) : 2.718281828459045 Math.exp(5.5) : 244.69193226422036 Math.cbrt ( x ) Math.expm1( x )