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 35055cc5..cdb44a6b 100644 --- a/1-js/04-object-basics/04-object-methods/article.md +++ b/1-js/04-object-basics/04-object-methods/article.md @@ -257,7 +257,7 @@ On the last line there is a ternary operator that chooses either `user.hi` or `u The method is immediately called with parentheses `()`. But it doesn't work right! -You can see that the call results in an error, cause the value of `"this"` inside the call becomes `undefined`. +You can see that the call results in an error, because the value of `"this"` inside the call becomes `undefined`. This works (object dot method): ```js