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
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
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
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
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