Created
January 22, 2017 20:19
-
-
Save iampava/be845b9ec182883799f51024c1822f5a to your computer and use it in GitHub Desktop.
Skydiving throught the Promise Land - callback
This file contains hidden or 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
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