Edit typo

This commit is contained in:
Aadith PM 2017-06-17 22:32:28 +05:30 committed by GitHub
parent d67c04c22f
commit c3548b61e1

View file

@ -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: