Block Scope
↔ Variable Lookup restrict to inside of Block
block scope !only applies to let & const variables
block scope does not apply to var variables which areFunction Scope
functions are block scoped only in strict mode
References
let
↔ JS Keyword to Declare mutable Variable with Block Scopeconst
↔ JS Keyword to Declare read-only named constant Variable with Block Scope