exp

種類メソッド
書式 Math.exp(値)
解説
eの累乗を返します。
サンプルコード
n = eval(prompt("Input Number",2));
alert("eの"+n+"乗は"+Math.exp(n)+"です");
実際のスクリプトをダウンロード