計算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>