JavaScript Assignment
JavaScript Assignment Operators
Assignment operators assign values to JavaScript variables.
Operator | Example | Same As |
---|---|---|
= | x = y | x = y |
+= | x += y | x = x + y |
-= | x -= y | x = x - y |
*= | x *= y | x = x * y |
/= | x /= y | x = x / y |
%= | x %= y | x = x % y |
<<= | x <<= y | x = x << y |
>>= | x >>= y | x = x >> y |
>>>= | x >>>= y | x = x >>> y |
&= | x &= y | x = x & y |
^= | x ^= y | x = x ^ y |
|= | x |= y | x = x | y |
**= | x **= y | x = x ** y |
The **=
operator is an experimental part of the ECMAScript 2016 proposal (ES7). It is not stable across browsers. Do not use it.
Assignment Examples
The =
assignment operator assigns a value to a variable.
The +=
assignment operator adds a value to a variable.
The -=
assignment operator subtracts a value from a variable.
The *=
assignment operator multiplies a variable.
The /=
assignment divides a variable.
The %=
assignment operator assigns a remainder to a variable.