Skip to content

Instantly share code, notes, and snippets.

@iampava
Created January 22, 2017 20:19
Show Gist options
  • Save iampava/be845b9ec182883799f51024c1822f5a to your computer and use it in GitHub Desktop.
Save iampava/be845b9ec182883799f51024c1822f5a to your computer and use it in GitHub Desktop.
Skydiving throught the Promise Land - callback
function takeOff(callback) {
setTimeout(function () {
console.log("I just landed! Woooho!");
callback();
}, 5000);
}
function callFriendAndTalkVeryExcitedlyAboutYourPrototype() {
console.log("Hey friend, you will not believe what my mind stumbled upon...");
}
takeOff(callFriendAndTalkVeryExcitedlyAboutYourPrototype);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment