Skip to content

Instantly share code, notes, and snippets.

@RajnishXCode
Last active June 24, 2025 12:05
Show Gist options
  • Save RajnishXCode/f129c46429532dff21288a43fa167f82 to your computer and use it in GitHub Desktop.
Save RajnishXCode/f129c46429532dff21288a43fa167f82 to your computer and use it in GitHub Desktop.
## JavaScript Scopes – At a Glance
| Scope Type | Description | Applies To |
|-----------------|--------------------------------------|-----------------------|
| Global Scope | Outside all blocks or functions | `var`, `let`, `const` |
| Function Scope | Inside a function | `var` |
| Block Scope | Inside `{}` like loops/conditionals | `let`, `const` |
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment