Back to tasks
МТСGet help with live coding in real time with Sobes Copilot
Junior — Senior
30
Ожидаемый вывод в консоль – задача 109
Companies where asked:
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);