Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save gilbertoquinteroA/c469f64a96b83ef2fe831f032bbd37fa to your computer and use it in GitHub Desktop.
Save gilbertoquinteroA/c469f64a96b83ef2fe831f032bbd37fa to your computer and use it in GitHub Desktop.
//https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Function/call
function sleep() {
var reply = [this.me, 'common sleep between', this.sleepDuration].join(' ');
console.log(reply);
}
var obj = {
me: 'Gilberto', sleepDuration: '4 and 8 hours'
};
sleep.call(obj)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment