Advertisement
Guest User

Untitled

a guest
Jan 22nd, 2017
104
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.38 KB | None | 0 0
  1. function takeOff(resolve) {
  2. setTimeout(function () {
  3. console.log("I just landed! Woooho!");
  4. resolve();
  5. }, 5000);
  6. }
  7.  
  8. function callFriendAndTalkVeryExcitedlyAboutYourPrototype() {
  9. console.log("Hey friend, you will not believe what my mind stumbled upon...");
  10. }
  11.  
  12. var promise = new Promise(takeOff);
  13. promise.then(callFriendAndTalkVeryExcitedlyAboutYourPrototype);
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement