Created
January 22, 2017 20:21
-
-
Save iampava/e816258ff02b173548e35dcfcab4de2c to your computer and use it in GitHub Desktop.
Skydiving through the Promise Land - promise
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(resolve) { | |
setTimeout(function () { | |
console.log("I just landed! Woooho!"); | |
resolve(); | |
}, 5000); | |
} | |
function callFriendAndTalkVeryExcitedlyAboutYourPrototype() { | |
console.log("Hey friend, you will not believe what my mind stumbled upon..."); | |
} | |
var promise = new Promise(takeOff); | |
promise.then(callFriendAndTalkVeryExcitedlyAboutYourPrototype); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment