What is a code block? What are some examples of a code block?
anything within { } if-else statements, for loops
What does block scope mean?
area within code block where the variables only exist in
What is the scope of a variable declared with const or let?
both are block scope
What is the difference between let and const?
let can be re assigned
Why is it possible to .push() a new value into a const variable that points to an Array?
not reassigning the const variable, just changing what it is referring to
How should you decide on which type of declaration to use?
use const all the time unless you get an error, then use let