Scope in JavaScript — a practical guide to JavaScript scope with clear examples you can reuse in real projects.
JavaScript Tutorial Series (47/101). Prefer one article? Read the complete JavaScript tutorial.
Short description
let/const are block-scoped; var is function-scoped.
Scope tip
Minimize globals
Prefer block scope
Closures capture scope