Naming Variables

  • Remember that we declare a new variable by typing the let keyword and then assigning a name to the variable.
  • A variable’s name is also known as an identifier.
let blank;
Naming Variables Remember that we declare a new variable by typing the let keyword and then assigning a name to the variable. A variable’s name is also known as an identifier. let blank;