Created
January 18, 2017 23:48
-
-
Save humanchimp/0e8617eafc823d723845fdc26151b5d3 to your computer and use it in GitHub Desktop.
method this binding in JS
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
cont foo = { | |
bar() { return this.baz }, | |
baz() { console.log(this) }, | |
} | |
foo.baz() // Logs `foo` | |
foo.bar().baz() // Logs `undefined` |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment