letmonthlyRent = 600;
let carNote$ = 300;
lethome_address = "789 Super Fun Ln.";
letbusinessAddress2 = "326 City Rd.";
let lunchTotal$ = 11.49;
notice the different types of data assigned
Exercise
Declare new variables and convert the following phrases to an appropriate variable name, using camelCasing and other naming conventions:
annual income
bills to be paid
number of vacation days left
week one
week two
week six
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;