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


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


JavaScript中的Math.exp()函數用於返回ex,其中x是自變量,e是歐拉數,它是自然對數的底數。
exp()是Math的靜態方法,因此,它始終用作Math.exp(),而不是用作創建的Math對象的方法。

用法:

Math.exp(value)

使用的參數:此函數接受單個參數值是其ex您想找到。


返回:Math.exp()函數返回ex其中e是歐拉數,x是自變量。

例子:

  1. 將零作為參數傳遞時。
    <script type="text/javascript"> 
       document.write("Output : " + Math.exp(0)); 
    </script>

    輸出:

    Output : 1
  2. 當“-1”作為參數傳遞時。
    <script type="text/javascript"> 
       document.write("Output : " + Math.exp(-1)); 
    </script>

    輸出:

    Output : 0.36787944117144233 
  3. 當“1”作為參數傳遞時。
    <script type="text/javascript"> 
       document.write("Output : " + Math.exp(1)); 
    </script>

    輸出:

    Output :  2.718281828459045 

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

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



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