compound assignment operators
Summary
The following table lists JavaScript compound assignment operators.
Syntax
Assignment Operators
Operator | Symbol |
---|---|
Addition | += |
Bitwise AND | &= |
Bitwise Or | = |
Bitwise XOR | ^= |
Division | /= |
Left Shift | <<= |
Modulus | %= |
Multiplication | *= |
Right Shift | >>= |
Subtraction | -= |
Unsigned Right Shift | >>>= |
See also
Other articles
Attributions
Microsoft Developer Network: Article