計算ex摘要
Math.exp(x)
參考
x
數值或表達式,用作指數。
傳回值
ex,即e的x次方。這裡e代表自然對數的底數,其近似為2.71828。
exp()語法如下:
程式碼如下:
複製程式碼
程式碼如下:
程式碼如下:
document.write(Math.exp(1)); // output is 2.718281828459045 document.write("
"); docum. write(Math.exp(-2)); // output is 0.1353352832366127 document.write("
"); document.write(Math.exp(.25)); // output is 1.2840254166877414 document.write("
"); document.write(Math.exp(-0.46)); // output is 0.631283645506926 >