Skip to content

Instantly share code, notes, and snippets.

@iampava
Created January 22, 2017 20:21
Show Gist options
  • Save iampava/e816258ff02b173548e35dcfcab4de2c to your computer and use it in GitHub Desktop.
Save iampava/e816258ff02b173548e35dcfcab4de2c to your computer and use it in GitHub Desktop.
Skydiving through the Promise Land - promise
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