Skip to content

Instantly share code, notes, and snippets.

@saltukalakus
Created August 14, 2016 21:04
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/f6d727a43f5049ef7386f0478c61553f to your computer and use it in GitHub Desktop.
Save saltukalakus/f6d727a43f5049ef7386f0478c61553f to your computer and use it in GitHub Desktop.
js call
var person = {
name: "James Smith",
hello: function(thing) {
console.log(this.name + " says hello " + thing);
}
}
person.hello.call(person, "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