Skip to content

Instantly share code, notes, and snippets.

@abhikulshrestha22
Created July 25, 2019 17: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 abhikulshrestha22/a4071094c6ef59d7c41977f4e9435990 to your computer and use it in GitHub Desktop.
Save abhikulshrestha22/a4071094c6ef59d7c41977f4e9435990 to your computer and use it in GitHub Desktop.
var fruit1 = {
name: 'Apple',
quantity: 2,
}
function getString(name1, name2, name3) {
return `${name1}, ${name2} and ${name3} have ${this.quantity} ${this.name} remaining`
}
// creates a new function newGetString
var newGetString = getString.bind(fruit1,'jane','john','abraham');
console.log(newGetString())
// jane, john and abraham have 2 Apple remaining
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment