pow

種類メソッド
書式 Math.pow(基数,指数)
解説
べき乗を返します。
サンプルコード
n = inputs[0];
outputs[0] = Math.pow(n,2);
実際のスクリプトをダウンロード