Sobes.tech
Back to tasks
Junior — Senior
29

Печать в консоль: задача 17

Get help with live coding in real time with Sobes Copilot
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));