const total = 105;
const score = 25300;
const numOfApples = 10;
const population = 1000000;
const firstName = "Wanda";
const lastName = "Washington";
const doTheyLoveMe = false;
const amIGoingToDoWellInThisClass = true;
const sum = "14" + "15";
1415
const sum = 14 + 15;
29
const score = 110; score += 10;
const score = 210; score -= 10;
const firstName = "Ella"; const lastName = "Rodriguez"; const fullName = firstName + " " + lastName;
const firstName = "Calvin"; const lastName = "Washington"; const fullName = firstName + " " + lastName;
const pies = ["Apple", "Pumpkin", "Cherry"];
const myPeeps = ["Misty", "Philip", "Anita", "Jackson"];
const data = [5, false, "Hooray"];
const data = [100, "birthday", true];
const names = ["Jay", "Jim", "Joe"];
names[1];
const numbers = [1, 2, 3];
numbers[2];
const numbers = [2, 1, 3];
numbers[0];
const numbers = [3, 2, 1];
const names = [["Joe", "Jim"], ["Jake", "James"], ["Jessie", "Jerry"]];
names[1][0];
const names = [["Vivan", "Sonia"], ["Audrey", "Jayden"], ["Hazel", "Alvin"]];
names[2][1];
const names = [["Bertha", "Parker", "Lewis", "Felecia"], ["Stacy", "Howard", "Kim", "Foster"]];
names[1][3];
const names = [["Marion", "Garrett", "Veronica", "Liam"], ["Stacy", "Price", "Marsha", "Larson"]];
names[1][2];
const numbers = [[1, 2, 3], [4, 5, 6], [7, 8, 9]];
const presidents = [["Washington", "Jefferson"], ["Roosevelt", "Lincoln"]];
presidents[1][1];
let iLoveCoding = true;