Skip to content

Instantly share code, notes, and snippets.

@debugmodedotnet
Created December 29, 2017 09:15
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 debugmodedotnet/fce219512be68d4d6e79c2abebf61c57 to your computer and use it in GitHub Desktop.
Save debugmodedotnet/fce219512be68d4d6e79c2abebf61c57 to your computer and use it in GitHub Desktop.
function message(age) {
return `Hi ${this.name}, you are ${age} years old !`;
}
var person = {
name: 'dj'
};
var mes = message.call(person, 30);
console.log(mes); // Hi dj, you are 30 years old !
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment