Skip to content

Instantly share code, notes, and snippets.

@jasminegmp
Last active February 20, 2020 02:30
Show Gist options
  • Save jasminegmp/96f6979fda8502da50e295921426db75 to your computer and use it in GitHub Desktop.
Save jasminegmp/96f6979fda8502da50e295921426db75 to your computer and use it in GitHub Desktop.
//call
let john = {
name: 'John'
}
let hobbies = ['painting', 'cooking', 'biking'];
let setName = function(hobby0, hobby1){
console.log(this.name + "'s hobbies are " + hobby0 + " and " + hobby1);
}
setName.call(john, hobbies[0], hobbies[1]);
// will output "John's hobbies are painting and cooking"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment