JavaScript Quiz Practice
Active Recall Drill Session
← Exit SessionQuestion 1 of 1
easyJavaScript
What logs, and in what order?
code
setTimeout(() => console.log('timeout'), 0);
Promise.resolve().then(() => console.log('promise'));Loading compiler resources...
Active Recall Drill Session
setTimeout(() => console.log('timeout'), 0);
Promise.resolve().then(() => console.log('promise'));