Last active
July 9, 2018 04:11
-
-
Save gilbertoquinteroA/c469f64a96b83ef2fe831f032bbd37fa to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
//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