Advertisement
Guest User

Untitled

a guest
Aug 14th, 2019
97
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.15 KB | None | 0 0
  1. let prom = new Promise(res => {
  2. console.log('A')
  3. setTimeout(res,1000)
  4. })
  5.  
  6. prom.then(res => {
  7. console.log('B')
  8. })
  9.  
  10. console.log('C')
  11.  
  12. // A
  13. // C
  14. // B
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement