Last active
June 24, 2025 12:05
-
-
Save RajnishXCode/f129c46429532dff21288a43fa167f82 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
## 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