How to Use the Assignment Operator in JavaScript

  • 2 min read
  • November 30, 2020
linkedin twitter facebook reddit
linkedin twitter facebook reddit

The Assignment operator is used to assign a value to a variable.

Assignment (=)

The assignment operator simply assigns the value of the right operand to the variable specified by the left operand.

let y = 5;

In the example above, let y is assigned the numeric value 5.

It is possible to assign any data type to a variable (e.g. String; Object; Function; etc.).

Assignments can be chained, allowing you to assign the value of the right operand to multiple variables in sequence.

The example code below demonstrates both the basic usage of the assignment operator, as well as the chaining functionality it enables:

let x = 5;
let y = 6;
let z = 7;
let a = 9;
x = y = z = a;
console.log(x, y, z, a);
// Expected output: 9 9 9 9

The example above defines four variables – x, y, z, and a – each with a different numeric value.

The fifth line of code assigns the value of the fourth variable (a, which contains the value 9) to the first three variables (x, y, and z). After this assignment, all four variables store the same numeric value – that of let a (9).

Other assignment operators

There are multiple types of assignment operators in JavaScript, in addition to the basic assignment operator detailed above:

Addition assignment (+=)

Subtraction assignment (-=)

Multiplication assignment (*=)

Division assignment (/=)

Remainder assignment (%=)

Exponentiation assignment (**=)

 

Related Articles

JavaScript – How to Use the substr Method

JavaScript – A Short Introduction to Loops

JavaScript – How to Use the onclick DOM Event

Related Posts

How to Use Option Selected Property in JavaScript

How to Use Option Selected Property in JavaScript

The <select> element creates a drop-down menu on the rendered output. You can add options to the drop-down menu by using nested <option> elements. This creates

Objects in JavaScript explained

Objects in JavaScript explained

In JavaScript, an Object is a special kind of data type. This article provides an introduction to one of JavaScript’s most important data types. One that

How to Use the for…in Statement in JavaScript

How to Use the for…in Statement in JavaScript

The for…in statement is used to loop through an object’s properties. Basic for…in loop example The following code demonstrates a basic example using the for…in statement