The = sign is called the simple assignment operator. It stores a value in a variable. The value on the right side is being input into the variable on the left side.
Syntax:
let variable = value;
Example:
let x = 10; // 10 assigned to x
console.log(x); // prints 10
Output:
