JavaScript Math.log()
方法返回给定数字的自然对数,即以 e 为底。如果数字为负数,则返回 NaN。
语法
log() 方法由以下语法表示:
Math.log(num)
参数
num - 一个数字。
返回
数字的自然对数。
方法示例
这里,我们将通过各种例子来了解log()方法。
示例1
让我们看一个打印数字自然对数的示例。
<script>
document.writeln(Math.log(1)+"<br>");
document.writeln(Math.log(5)+"<br>");
document.writeln(Math.log(10));
</script>
输出:
0
1.6094379124341003
2.302585092994046
1.6094379124341003
2.302585092994046
示例2
让我们看看log()方法在不同的测试用例中的结果。
<script>
document.writeln(Math.log()+"<br>");
document.writeln(Math.log(-5)+"<br>");
document.writeln(Math.log(0));
</script>
输出:
NaN
NaN
-Infinity
NaN
-Infinity