JavaScript Quiz Practice
Active Recall Drill Session
← Exit SessionQuestion 1 of 1
mediumJavaScript
What does this log, and in what order?
code
async function f() {
console.log('1');
await null;
console.log('2');
}
f();
console.log('3');Loading compiler resources...
Active Recall Drill Session
async function f() {
console.log('1');
await null;
console.log('2');
}
f();
console.log('3');