1 | Assignment operators: = += -= *= /= %= <<= >>= >>>= &= ^= |= |
2 | Supports the usual arithmetic operators and %, ++, and -- |
3 | Concatenation operator: + |
4 | Bit operators: & | ^ ~ << >> >>> |
5 | Relational operators: == > >= < <= != |
6 | Logical operators: && || ! |