Mauzzz0

TS. Задание на собес #2.

Sep 16th, 2022 (edited)
1,413
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
TypeScript 0.32 KB | Software | 0 0
  1. # Что выведется в консоли?
  2.  
  3. console.log(1);
  4.  
  5. setTimeout(() => console.log(2));
  6.  
  7. Promise.resolve().then(() => console.log(3));
  8.  
  9. Promise.resolve().then(() => setTimeout(() => console.log(4)));
  10.  
  11. Promise.resolve().then(() => console.log(5));
  12.  
  13. setTimeout(() => console.log(6));
  14.  
  15. console.log(7);
Advertisement
Add Comment
Please, Sign In to add comment