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


Javascript Math.E()用法及代碼示例


Math.E()是JavaScript中的內置函數,用於獲取ep的值,其中p是任何給定的數字。
號碼Ë是一個數學常數,其近似值等於2.718

  • 它是由瑞士數學家雅各布·伯努利發現的。
  • 此號碼也稱為歐拉號碼。

用法:

Math.exp(p)

參數:該函數接受單一參數p為任意數字。

返回值:它返回ep的值,其中p是任何給定的數字作為參數。

例:


Input  : Math.exp(0)
Output : 1

說明:
這裏參數p的值為0,因此在ep中將值0而不是p放入後
然後它的值變成1。

Input  : Math.exp(2)
Output : 7.38905609893065

說明:
這裏參數p的值為2,因此在將ep中的值2代替p之後
那麽它的值變成7.38905609893065。

讓我們看一下JavaScript程序:

  • 示例1:
    <script> 
      // Here different values is being taken as 
      // as parameter of Math.exp() function. 
      document.write(Math.exp(0) + "<br>"); 
      document.write(Math.exp(1) + "<br>"); 
      document.write(Math.exp(2) + "<br>"); 
      document.write(Math.exp(-1) + "<br>"); 
      document.write(Math.exp(-7) + "<br>"); 
      document.write(Math.exp(10) + "<br>"); 
      document.write(Math.exp(1.2)); 
    </script>

    輸出:

    1
    2.718281828459045
    7.38905609893065
    0.36787944117144233
    0.0009118819655545162
    22026.465794806718
    3.3201169227365472
    
  • 示例2:這裏的參數必須是數字,否則會給出錯誤或NaN,即不是數字。
    <script> 
      // Here alphabet parameter give error. 
      document.write(Math.exp(a)); 
    </script>

    輸出:

    Error: a is not defined
    <script> 
      // Here parameter as a string give NaN. 
      document.write(Math.exp("gfg")); 
    </script>

    輸出:

    NaN

支持的瀏覽器:下麵列出了JavaScript Math.E()函數支持的瀏覽器:

  • 穀歌瀏覽器
  • IE瀏覽器
  • 火狐瀏覽器
  • Opera
  • 蘋果瀏覽器


相關用法


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