Skip to content

Commit 1f7b137

Browse files
authored
'since this moment' -> 'from this point forward'
1 parent c75f66a commit 1f7b137

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

+1-1
Original file line numberDiff line numberDiff line change
@@ -183,7 +183,7 @@ Rectangles on the right-hand side demonstrate how the global Lexical Environment
183183

184184
1. When the script starts, the Lexical Environment is pre-populated with all declared variables.
185185
- Initially, they are in the "Uninitialized" state. That's a special internal state, it means that the engine knows about the variable, but it cannot be referenced until it has been declared with `let`. It's almost the same as if the variable didn't exist.
186-
2. Then `let phrase` definition appears. There's no assignment yet, so its value is `undefined`. We can use the variable since this moment.
186+
2. Then `let phrase` definition appears. There's no assignment yet, so its value is `undefined`. We can use the variable from this point forward.
187187
3. `phrase` is assigned a value.
188188
4. `phrase` changes the value.
189189

0 commit comments

Comments
 (0)