What is a code block? What are some examples of a code block?
it is the area where code is executed
What does block scope mean?
the scope of the block
What is the scope of a variable declared with const or let?
block scope
What is the difference between let and const?
let can be re-assigned - const cannot be reassigned
Why is it possible to .push() a new value into a const variable that points to an Array?
the assigned array will not be mutated
How should you decide on which type of declaration to use?
use const first then let