Arithmetic Operators
- + addition
- - subtraction
- * multiplication
- / division
- % modulus
- ^ Exponent
Logical Operators
- && And
- || Or
- ! Not
- “and” takes precedence over “or”
- “not” has the highest precedence
Assignment Operators
- = Assignment
- ++ Increments
- -- Decrements
- += Adds and assigns
- -= Subtracts and assigns
- *= Multiplies and assigns
- \= Divides and assigns