This page is Ready to Use

Notice: The WebPlatform project, supported by various stewards between 2012 and 2015, has been discontinued. This site is now available on github.

compound assignment operators

Summary

The following table lists JavaScript compound assignment operators.

Syntax

Assignment Operators

OperatorSymbol
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