Variable Definition: 

“JavaScript variables are containers for storing data values. Variables are named containers that you can place data in and then refer to the data by naming the container.” 

"A variable is a named value in your program. Whenever you use the name in the program, it's replaced with the value."

"You can think of a variable as a box that you can fit one thing in. If you put something else in it, the first thing goes away."

Case Sensitive:

Invalid Variables: 

Safe Variable Beginings:

Best Practice:


Summary: 

1. Variables let you store data for your program to use while it's running.

2. Declare a variable by following the var keyword with a name.

3. Choose simple, descriptive names for your variables, avoiding JavaScript's keywords and reserved words.