Skip to content

Instantly share code, notes, and snippets.

@saltukalakus
Last active June 2, 2025 20:40
Show Gist options
  • 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