Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Clarify 'case 2' for 'this' explanation. #2

Closed
wants to merge 1 commit into from
Closed

Clarify 'case 2' for 'this' explanation. #2

wants to merge 1 commit into from

Commits on Nov 25, 2016

  1. Clarify 'case 2' for 'this' explanation.

    Here is something I learned today.  See example below.
    
    ```
    var obj = {
      hello: function() { return "hello, " + this.username; },
      username: "Kenny"
    };
    obj.hello(); // "hello, Kenny
    
    var obj2 = {
      hello: obj.hello,
      username: "Gordon"
    };
    obj2. hello(); // "hello, Gordon"
    ```
    
    Rather than saying 'contains' the method, 'calls' the method seems more accurate.
    kennyklee authored Nov 25, 2016
    Configuration menu
    Copy the full SHA
    a08c927 View commit details
    Browse the repository at this point in the history