Skip to content

Instantly share code, notes, and snippets.

@humanchimp
Created January 18, 2017 23:48
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save humanchimp/0e8617eafc823d723845fdc26151b5d3 to your computer and use it in GitHub Desktop.
Save humanchimp/0e8617eafc823d723845fdc26151b5d3 to your computer and use it in GitHub Desktop.
method this binding in JS
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