Skip to content

Commit 44fba01

Browse files
committed
patch
1 parent dd88ae4 commit 44fba01

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

1-js/06-advanced-functions/03-closure/article.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@ In JavaScript, every running function, code block and the script as a whole have
7070
The Lexical Environment object consists of two parts:
7171

7272
1. *Environment Record* -- an object that has all local variables as its properties (and some other information like the value of `this`).
73-
2. A reference to the *outer lexical environment*, usually the one associated with the code lexically right outside of it (outside of the current figure brackets).a
73+
2. A reference to the *outer lexical environment*, usually the one associated with the code lexically right outside of it (outside of the current figure brackets).
7474

7575
So, a "variable" is just a property of the special internal object, Environment Record. "To get or change a variable" means "to get or change the property of that object".
7676

0 commit comments

Comments
 (0)