From 9fd644cc839f4ce660a128481f315691cebc7782 Mon Sep 17 00:00:00 2001 From: paroche <46547072+paroche@users.noreply.github.com> Date: Mon, 23 Sep 2019 20:44:13 -0600 Subject: [PATCH] Update article.md Add "the" before "'this' keyword". --- 1-js/04-object-basics/04-object-methods/article.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/1-js/04-object-basics/04-object-methods/article.md b/1-js/04-object-basics/04-object-methods/article.md index 81a6a016..2dda938d 100644 --- a/1-js/04-object-basics/04-object-methods/article.md +++ b/1-js/04-object-basics/04-object-methods/article.md @@ -98,7 +98,7 @@ It's common that an object method needs to access the information stored in the For instance, the code inside `user.sayHi()` may need the name of the `user`. -**To access the object, a method can use `this` keyword.** +**To access the object, a method can use the `this` keyword.** The value of `this` is the object "before dot", the one used to call the method.