JavaScript assignment operator is equal (=) which assigns the value of the right-hand operand to its left-hand operand. That is if a = b assigns the value of b to a.
The simple assignment operator is used to assign a value to a variable. The assignment operation evaluates the assigned value. Chaining the assignment operator is possible in order to assign a single value to multiple variables. See the example.
Syntax:
data=value
Example:
// Lets take some variables
x=10
y=20
x=y // Here, x is equal to 20
y=x // Here, y is equal to 10
Assignment Operators List: There are so many assignment operators as shown in the table with the description.
Below we have described each operator with an example code:
Addition Assignment: This operator adds the value to the right operand to a variable and assigns the result to the variable. The types of the two operands determine the behavior of the addition assignment operator. Addition or concatenation is possible. In case of concatenation then we use the string as an operand.
Example:
Javascript
let a = 2;
const b = 3;
console.log(a);
console.log(a = b + 1);
|
Output:
2
4
Subtraction Assignment: This operator subtracts the value of the right operand from a variable and assigns the result to the variable.
Example:
Javascript
let yoo = 4;
console.log(foo = yoo - 1);
|
Output:
3
Multiplication Assignment: This operator multiplies a variable by the value of the right operand and assigns the result to the variable.
Example:
Javascript
let yoo = 4;
console.log(foo = yoo - 1);
|
Output:
10
Division Assignment: This operator divides a variable by the value of the right operand and assigns the result to the variable.
Example:
Javascript
let yoo = 10;
const moo = 2;
console.log(yoo = yoo / moo);
console.log(yoo /= 0);
|
Output:
5
Infinity
Remainder Assignment: This operator divides a variable by the value of the right operand and assigns the remainder to the variable.
Example:
Javascript
let yoo = 50;
console.log(yoo %= 10);
|
Output:
0
Exponentiation Assignment: This operator raises the value of a variable to the power of the right operand.
Example:
Javascript
let yoo = 50;
console.log(yoo %= 10);
|
Output:
4
Left Shift Assignment: This operator moves the specified amount of bits to the left and assigns the result to the variable.
Example:
Javascript
let yoo = 5;
console.log(yoo <<= 2);
|
Output:
20
Right Shift Assignment: This operator moves the specified amount of bits to the right and assigns the result to the variable.
Example:
Javascript
let yoo = 5;
console.log(yoo >>= 2);
|
Output:
1
Bitwise AND Assignment: This operator uses the binary representation of both operands, does a bitwise AND operation on them, and assigns the result to the variable.
Example:
Javascript
let yoo = 5;
console.log(yoo &= 2);
|
Output:
0
Bitwise OR Assignment: This operator uses the binary representation of both operands, does a bitwise OR operation on them, and assigns the result to the variable.
Example:
Javascript
let yoo=5;
console.log(yoo|=2);
|
Output:
7
Bitwise XOR Assignment: This operator uses the binary representation of both operands, does a bitwise XOR operation on them, and assigns the result to the variable.
Example:
Javascript
let yoo = 5;
console.log(yoo ^= 2);
|
Output:
7
Whether you're preparing for your first job interview or aiming to upskill in this ever-evolving tech landscape,
GeeksforGeeks Courses are your key to success. We provide top-quality content at affordable prices, all geared towards accelerating your growth in a time-bound manner. Join the millions we've already empowered, and we're here to do the same for you. Don't miss out -
check it out now!
Last Updated :
19 Jun, 2023
Like Article
Save Article