Skip to content

Instantly share code, notes, and snippets.

@saltukalakus
Last active August 14, 2016 21:03
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 saltukalakus/6eca891a1222708e4508502692cde5fc to your computer and use it in GitHub Desktop.
Save saltukalakus/6eca891a1222708e4508502692cde5fc to your computer and use it in GitHub Desktop.
js bind
var person = {
name: "James Smith",
hello: function(thing) {
console.log(this.name + " says hello " + thing);
}
}
var helloFunc = person.hello.bind(person);
helloFunc("world"); // output: "James Smith says hello world"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment