Sobes.tech
Back to tasks
Junior — Senior
30

Ожидаемый вывод в консоль – задача 109

Companies where asked:

МТСМТС
Get help with live coding in real time with Sobes Copilot
Task condition

Какой результат будет выведен в консоль?

console.log(1);

setTimeout(() => console.log(2));

Promise.resolve().then(() => console.log(3));

let myPromise = new Promise(function(resolve, reject) {
  console.log(4);
  resolve();
});

myPromise.then(function() {
  console.log(5);
});

Promise.resolve().then(() => setTimeout(() => console.log(6)));

Promise.resolve().then(() => console.log(7));

setTimeout(() => console.log(8));

console.log(9);