Back to tasksGet help with live coding in real time with Sobes Copilot
Junior — Senior
78
Определите, что будет выведено в консоль и почему (задание 11)
Companies where asked:
ProninTeam
Task condition
Определите порядок вывода в консоль и объясните, почему именно в таком виде появляются данные.
const ZERO_MS = 0;
function printConsole(arg) {
console.log(arg);
}
function task1() {
printConsole('🍏');
setTimeout(printConsole, ZERO_MS, '🍋');
new Promise(resolve => {
resolve('🍉');
}).then(printConsole);
printConsole('🍇');
}
task1();