pow

種類メソッド
書式 Math.pow(基数,指数)
解説
べき乗を返します。
サンプルコード
function sampleCode()
{
txtField.data = Math.pow(16,2);
}
sampleCode();
実際のスクリプトをダウンロード