Scope
Term side of the Card
Topic: Basics
Unit title: Scope
Categories: Concept
Explanation side of the Card
Explanation: The context in which variables and functions are accessible. JavaScript has global scope, function scope and block scope, introduced with `let` and `const`. Scope determines where a variable can be read or written in the code, whether globally, locally or within a specific block.