Back to tasksGet help with live coding in real time with Sobes Copilot
Junior — Senior
39
Определите порядок вывода чисел в консоль
Task condition
Нужно установить, в каком порядке будут напечатаны цифры при выполнении данного кода.
// console.log(1);
// setTimeout(() => console.log(2));
// Promise.resolve().then(() => console.log(3));
// Promise.resolve().then(() => setTimeout(() => console.log(4)));
// Promise.resolve().then(() => console.log(5));
// setTimeout(() => console.log(6));
// console.log(7);