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