From e3972623256dc7677f1317379710eb43f29c87ed Mon Sep 17 00:00:00 2001 From: Jaydeep Mahajan Date: Sat, 6 Feb 2021 19:20:24 +0530 Subject: [PATCH] Update 5-Window-this.md space between this and variable --- Notes/5-Window-this.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Notes/5-Window-this.md b/Notes/5-Window-this.md index 305a908..5e5154c 100644 --- a/Notes/5-Window-this.md +++ b/Notes/5-Window-this.md @@ -4,7 +4,7 @@ - Shortest JS program is nothing but an Empty JS file - Even for this program, JS engine does a lot behind the scenes -- It creates the GEC, the "window" and the *this*variable +- It creates the GEC, the "window" and the *this* variable - Window is a big global object that has a lot of functions and variables. All of these can be accessed from anywhere in the program - *this* points to *window* > this === window -> true (at global level)