"Guess the Output" JS Quiz Engine

Score: 0 / 3
Question 1 of 3Event LoopEvent Loop Order
console.log('1');
setTimeout(() => console.log('2'), 0);
Promise.resolve().then(() => console.log('3'));
console.log('4');