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 44a867e2..5328e5cf 100644 --- a/1-js/04-object-basics/04-object-methods/article.md +++ b/1-js/04-object-basics/04-object-methods/article.md @@ -278,7 +278,7 @@ Looking closely, we may notice two operations in `obj.method()` statement: 1. First, the dot `'.'` retrieves the property `obj.method`. 2. Then parentheses `()` execute it. -So, how the information about `this` gets passed from the first part to the second one? +So, how does the information about `this` gets passed from the first part to the second one? If we put these operations on separate lines, then `this` will be lost for sure: