We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent fa5c518 commit 26f7f76Copy full SHA for 26f7f76
blog/2024-10-01-local-variables.md
@@ -90,7 +90,7 @@ console.log(a); // 1
90
91
You can see that variables are tied to their scopes.
92
All three variables `a` never change their values.
93
-They just exist in their respective scopes and as soon as the scope has ended they are no longer accessible.
+The variables just exist in their respective scopes, and as soon as the scope has ended, they are no longer accessible.
94
Instead, the previous outer scope returns to being the current scope and its variables are accessible.
95
96
You can see that in addition to blocks, functions also have scopes.
0 commit comments