...

/

What Are Variables?

What Are Variables?

This lesson teaches what variables are and how they can store data.

Variables #

A variable is like a storage box paired with an associated name which contains data. The associated name is the identifier and the data that goes inside the variable is the value. They are immutable by default, meaning, you cannot reassign value to them.

Create a Variable #

To create a variable, use the let binding followed by the variable name. ...