DIV CSS 佈局教程網

 DIV+CSS佈局教程網 >> 網頁腳本 >> JavaScript入門知識 >> JavaScript基礎知識 >> JS數學函數Exp使用說明
JS數學函數Exp使用說明
編輯:JavaScript基礎知識     

計算ex摘要

Math.exp(x)
參考
x
數值或表達式,被用作指數。

返回值

ex,即e的x次冪。這裡e代表自然對數的底數,其近似為2.71828。

exp()語法如下:
復制代碼 代碼如下: Math.exp(x) ;
Math.exp()范例:
復制代碼 代碼如下:
<script language='JavaScript' type='text/JavaScript'>
<!--
document.write(Math.exp(2)); // output is 7.38905609893065
document.write("<br>");
document.write(Math.exp(1)); // output is 2.718281828459045
document.write("<br>");
document.write(Math.exp(-2)); // output is 0.1353352832366127
document.write("<br>");
document.write(Math.exp(.25)); // output is 1.2840254166877414
document.write("<br>");
document.write(Math.exp(-0.46)); // output is 0.631283645506926
//-->
</script>

XML學習教程| jQuery入門知識| AJAX入門| Dreamweaver教程| Fireworks入門知識| SEO技巧| SEO優化集錦|
Copyright © DIV+CSS佈局教程網 All Rights Reserved