Guest User

Untitled

a guest
Jan 18th, 2018
74
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.20 KB | None | 0 0
  1. function getCoffee() {
  2. return new Promise(resolve => {
  3. setTimeout(() => resolve('xDD'), 2000);
  4. });
  5. }
  6.  
  7. async function go() {
  8. const coffee = await getCoffee();
  9. console.log(coffee);
  10. }
  11. go();
Add Comment
Please, Sign In to add comment