Lesson 2: Variables, Values and Data Types in JavaScript
A game must remember a player name, a score and whether the level is complete, even though these pieces of information are different. How can JavaScript keep track of them while the program runs? It uses values, variables and data types: values hold the information, variables provide names for reaching it, and types describe what kind of information each value represents.
