From e9ed9f16c9e7bec2c23b6d3b451aa2bff130ca0a Mon Sep 17 00:00:00 2001 From: Elie Date: Wed, 19 Dec 2018 01:26:52 +0200 Subject: [PATCH] Spelling fix --- 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 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