"4 ^ 2" is in JS as it is in Java: the XOR bitwise operator. The way to get 4 power 2 is via Math's pow() method: "Math.pow(4, 2);" ...
確定! 回上一頁