Advertisement
Guest User

Untitled

a guest
Jun 17th, 2019
60
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.18 KB | None | 0 0
  1. function go(){
  2. Promise.resolve().then(e=>console.info('task 1')).then(e=>go())
  3. }
  4.  
  5. go()
  6.  
  7.  
  8. function goSetTimeout(){
  9. console.info('fsf')
  10. setTimeout(goSetTimeout)
  11. }
  12.  
  13. goSetTimeout()
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement