Skip to content

Commit b2c478e

Browse files
authored
Update article.md
1 parent 1b2d3e8 commit b2c478e

File tree

1 file changed

+1
-1
lines changed
  • 1-js/06-advanced-functions/05-global-object

1 file changed

+1
-1
lines changed

1-js/06-advanced-functions/05-global-object/article.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ But starting from ES-2015, these entities are split apart. There's a global Lexi
6161

6262
As a practical difference, global `let/const` variables are definitively properties of the global Environment Record, but they do not exist in the global object.
6363

64-
Naturally, that's because the idea of a global object as a way to access "all global things" comes from ancient times. Nowadays is not considered to be a good thing. Modern language features like `let/const` do not make friends with it, but old ones are still compatible.
64+
Naturally, that's because the idea of a global object as a way to access "all global things" comes from ancient times. Nowadays it's not considered to be a good thing. Modern language features like `let/const` do not make friends with it, but old ones are still compatible.
6565
```
6666

6767
## Uses of "window"

0 commit comments

Comments
 (0)