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