exp() 方法可返回 e 的 x 次幂的值。
Math.exp(x)
参数 | 描述 |
---|---|
x | 必需。任意数值或表达式。被用作指数。 |
返回 e 的 x 次幂。e 代表自然对数的底数,其值近似为 2.71828。
在下面的例子中,我们将把 exp() 运用到不同的数值上:
<script type="text/javascript"> document.write(Math.exp(1) + "<br />") document.write(Math.exp(-1) + "<br />") document.write(Math.exp(5) + "<br />") document.write(Math.exp(10) + "<br />") </script>
输出:
2.718281828459045 0.36787944117144233 148.4131591025766 22026.465794806718