Mathオブジェクトのexp()メソッドは、自然対数の底eの累乗を返します。
自然対数の底e(約2.718)に対して、引数に累乗する指数nを指定すると、eのn乗 en
の計算結果を返します。
<script> document.write(Math.exp(0) + "<br>"); document.write(Math.exp(1) + "<br>"); document.write(Math.exp(2) + "<br>"); document.write(Math.exp(3) + "<br>"); document.write(Math.exp(4) + "<br>"); </script>