From b2c478e65d78b4d6f893a5c5752ab147fdf847c8 Mon Sep 17 00:00:00 2001 From: Jack Evoniuk <45554423+Evoniuk@users.noreply.github.com> Date: Tue, 19 Feb 2019 02:22:18 -0800 Subject: [PATCH] Update article.md --- 1-js/06-advanced-functions/05-global-object/article.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/1-js/06-advanced-functions/05-global-object/article.md b/1-js/06-advanced-functions/05-global-object/article.md index 0443eba9..dc875e2d 100644 --- a/1-js/06-advanced-functions/05-global-object/article.md +++ b/1-js/06-advanced-functions/05-global-object/article.md @@ -61,7 +61,7 @@ But starting from ES-2015, these entities are split apart. There's a global Lexi 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. -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. +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. ``` ## Uses of "window"