From 610f7b0b6a78f25219473411a1df03ff93d9efea Mon Sep 17 00:00:00 2001 From: Samiran Konwar Date: Tue, 9 Aug 2022 23:53:48 +0530 Subject: [PATCH] Update this-keyword-2nd-example-GREAT-Example.md --- .../this-keyword/this-keyword-2nd-example-GREAT-Example.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Javascript/this-keyword/this-keyword-2nd-example-GREAT-Example.md b/Javascript/this-keyword/this-keyword-2nd-example-GREAT-Example.md index 910921f..4715604 100755 --- a/Javascript/this-keyword/this-keyword-2nd-example-GREAT-Example.md +++ b/Javascript/this-keyword/this-keyword-2nd-example-GREAT-Example.md @@ -30,7 +30,7 @@ But if I do the following instead of user.foo() Then it prints 'true' - Because now the simple function foo is in the global execution context and so the 'this' refers to global -But then agin if my foo() function is in strict mode +But then again if my foo() function is in strict mode ```js function foo() {