当前位置: 首页 > 网络学院 > 客户端脚本教程 > VBScript > VBScript Log 函数
The Log function returns the natural logarithm of a specified number. The natural logarithm is the logarithm to the base e.
Log 函数可返回数值的自然对数
Note: Negative values are not allowed.
注意:负数值不允许使用
Tip: Also look at the Exp function.
提示:还可以参考下Exp函数
Log(number) |
参数 | 描述 |
---|---|
number | Required. A valid numeric expression > 0 必选项。number 参数是任意大于 0 的有效数值表达式 |
document.write(Log(38.256783227)) 输出: 3.64432088381777 |