Math.log()方法返回一個數(shù)的自然對數(shù)(以e為底)。
JavaScript Math.log()函數(shù)在數(shù)學上等效于ln(x)
。
如果傳遞的參數(shù)為負,則返回值始終為NaN。
如果傳遞的參數(shù)為0,則返回值始終為-Infinity。
由于log()是Math的靜態(tài)方法,因此您始終將其用作Math.log(),而不是用作創(chuàng)建的Math對象的方法。
Math.log(x)
Math.log(-1); // NaN, out of range Math.log(0);// -Infinity Math.log(1);// 0 Math.log(10); // 2.302585092994046測試看看?/?
所有瀏覽器都完全支持Math.log()方法:
Method | ![]() | ![]() | ![]() | ![]() | ![]() |
Math.log() | 是 | 是 | 是 | 是 | 是 |
參數(shù) | 描述 |
---|---|
x | 數(shù)值 |
返回值: | 給定數(shù)字的自然對數(shù)(以e為底)。如果數(shù)字為負,則返回NaN |
---|---|
JavaScript版本: | ECMAScript 1 |