Back to tasksGet help with live coding in real time with Sobes Copilot
Junior — Senior
29
Печать в консоль: задача 17
Task condition
Определите порядок вывода в консоль
Promise.resolve().then(() => console.log(1));
console.log(2);
setTimeout(() =>
new Promise((res) => {
console.log(3);
res(null);
}).then(() => console.log(4))
};
setTimeout(() => console.log(5));
console.log(6);
setTimeout(() => console.log(7));