当前位置: 首页 > 网络学院 > 客户端脚本教程 > VBScript > VBScript Exp 函数
The Exp function returns e raised to a power.
Exp 函数可返回 e(自然对数的底)的幂次方
Note: The value of number cannot exceed 709.782712893.
注意:如果 number 参数超过 709.782712893,则出现错误。常数 e 的值约为 2.718282。
Tip: Also look at the Log function.
提示:同时参考下Log 函数
Exp(number) |
参数 | 描述 |
---|---|
number | Required. A valid numeric expression 必选项。number 参数可以是任意有效的数值表达式 |
document.write(Exp(6.7)) 输出: 812.405825167543 |
document.write(Exp(-6.7)) 输出: 1.23091190267348E-03 |