Addition + Subtraction - Multiplication * Division / Modulous %
x += 4; is equivalent to x = x + 4; x -= 4; ... x = x - 4; x *= 4; ... x = x * 4; x /= 4; ... x = x / 4;
X raised to the power of 2 (x squared) is,
Math.pow(x, 2)
x++; is equivalent to x = x + 1; x--; ... x = x - 1;
Equality == Inequality != Greater than > Less than < Greater than or equals to >= Less than or equals to <= Logical "and" && Logical "not" ||