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