pow

メソッド Type method
Math.pow(基数,指数) Format Math.pow (base, index)
Commentary
べき乗を返します。 Power returns.
サンプルコード Sample code
n = inputs[0]; n = inputs [0];
outputs[0] = Math.pow(n,2); outputs [0] = Math.pow (n, 2);