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