Remember Stuff
Learn to store and update values with variables.
Let’s teach JavaScript to remember things. In this lesson, you’ll learn about variables—they store data like names, scores, or anything else your program needs.
Goals
You’ll learn to:
Learn to create variables using
let
andconst
.Store text and numbers.
Use those variables in your ...