Back to Developer Roadmap

Block Scope

src/data/roadmaps/javascript/content/[email protected]

4.0480 B
Original Source

Block Scope

This scope restricts the variable that is declared inside a specific block, from access by the outside of the block. The let & const keyword facilitates the variables to be block scoped. In order to access the variables of that specific block, we need to create an object for it. Variables declared with the var keyword, do not have block scope.

Visit the following resources to learn more: