Variables

Variables store a piece of data. We can declare a variable using the let keyword.

let a = 123;

You can reassign the value later.

a = 456;