From d813adfb7ba609c3e87a8563e9b37828057da573 Mon Sep 17 00:00:00 2001 From: Daniel Schroeder Date: Sat, 7 Sep 2019 13:01:53 -0500 Subject: [PATCH] Fix minor grammatical errors --- 1-js/04-object-basics/04-object-methods/article.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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 00f144e1..99a9ef58 100644 --- a/1-js/04-object-basics/04-object-methods/article.md +++ b/1-js/04-object-basics/04-object-methods/article.md @@ -167,9 +167,9 @@ If we used `this.name` instead of `user.name` inside the `alert`, then the code ## "this" is not bound -In JavaScript, "this" keyword behaves unlike most other programming languages. It can be used in any function. +In JavaScript, the "this" keyword behaves unlike most other programming languages. It can be used in any function. -There's no syntax error in the code like that: +There's no syntax error in the following example: ```js function sayHi() {