let Binding
This lesson is all about assigning names to data so that it can be used later.
We'll cover the following...
Keeping Track of Values
Storing data in an identifier is essential for almost any language. Identifiers facilitate the flow of information throughout a program. If we have a value that is being used in several places, it would be impractical to hardcode it again and again.
Attaching an identifier to the value would make the code more concise, more readable, and more reusable. ...