Skip to content

Commit

Permalink
Merge pull request javascript-tutorial#559 from fearedserpent/patch-1
Browse files Browse the repository at this point in the history
Fixed grammatical typo.
  • Loading branch information
iliakan authored Oct 20, 2018
2 parents b4bc5fb + 61e825b commit 2ac68ec
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion 1-js/04-object-basics/04-object-methods/article.md
Original file line number Diff line number Diff line change
Expand Up @@ -276,7 +276,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 does the information about `this` gets passed from the first part to the second one?
So, how does the information about `this` get passed from the first part to the second one?

If we put these operations on separate lines, then `this` will be lost for sure:

Expand Down

0 comments on commit 2ac68ec

Please sign in to comment.