Math.exp( exponent )メソッドは、ネイピア数(自然対数の底)を基数、引数「exponent」に指定した数値を指数とする累乗計算の結果を返す静的メソッド。
構文
Math.exp( exponent )
引数
- exponent
- 累乗計算の指数を指定する。
戻り値
ネイピア数の累乗計算結果。
サンプル
<script>
document.write( '<p>Math.exp( 1 ): ' + Math.exp( 1 ) + '</p>' );
document.write( '<p>Math.exp( 2 ): ' + Math.exp( 2 ) + '</p>' );
document.write( '<p>Math.exp( 3 ): ' + Math.exp( 3 ) + '</p>' );
</script>
document.write( '<p>Math.exp( 1 ): ' + Math.exp( 1 ) + '</p>' );
document.write( '<p>Math.exp( 2 ): ' + Math.exp( 2 ) + '</p>' );
document.write( '<p>Math.exp( 3 ): ' + Math.exp( 3 ) + '</p>' );
</script>
↓↓↓出力結果↓↓↓