JavaScript Quiz Practice
Active Recall Drill Session
← Exit SessionQuestion 1 of 1
mediumJavaScript
What logs, and in what order?
code
function f() {
try {
throw new Error('boom');
} finally {
console.log('cleanup');
}
}
try {
f();
} catch (e) {
console.log('caught:', e.message);
}