Advertisement
Guest User

Untitled

a guest
Oct 19th, 2019
89
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.24 KB | None | 0 0
  1. /*
  2. Что выведется в консоль и почему?
  3. */
  4.  
  5. function test () {
  6. console.log(1)
  7.  
  8. setTimeout(function () {
  9. console.log(2)
  10. })
  11.  
  12. Promise.resolve(3).then(function (n) {
  13. console.log(n)
  14. })
  15. }
  16.  
  17.  
  18. test()
  19. console.log(4)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement