當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


JavaScript Math log()用法及代碼示例


下麵是Math log()方法的示例。

  • 例:
    <script type="text/javascript"> 
         document.write("When zero is  passed as a parameter:"  
                         + Math.log(0)); 
    </script>
  • 輸出:
    When zero is  passed as a parameter:-Infinity

Math.log()方法用於返回數字的自然對數(以e為底)。 JavaScript Math.log()方法在數學上等效於ln(x)。如果x的值為負,則math.log()方法返回NaN。

log()是Math的靜態方法,因此,它始終用作Math.log(),而不是用作創建的Math對象的方法。

用法:

Math.log(value)

參數:此方法接受如上所述和以下描述的單個參數:



  • value:此參數包含您要查找其自然對數的數字。

返回值:Math.log()方法返回給定數字的自然對數。

上述方法的更多代碼如下:

程序1:當“-1”作為參數傳遞時。

<script type="text/javascript"> 
         document.write("Result:" + Math.log(-1)); 
</script>

輸出:

Output:NaN

計劃12:當“10”作為參數傳遞時。

<script type="text/javascript"> 
         document.write("Result:" + Math.log(10)); 
</script>

輸出:

Result:2.302585092994046

程序3:用不同的底數計算Math.log()。要找到以2為底的對數8,請按以下方式執行math.log()方法:

<script type="text/javascript"> 
         document.write("Result:" + Math.log(8)/Math.log(2)); 
</script>

輸出:

Output:3

支持的瀏覽器:

  • 穀歌瀏覽器
  • IE瀏覽器
  • Firefox
  • Opera
  • Safari




相關用法


注:本文由純淨天空篩選整理自Shubrodeep Banerjee大神的英文原創作品 JavaScript Math log() Method。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。