Node.js - Error Handling Patterns
What will be the output of this Node.js code?
try {
throw new Error('Oops!');
} catch (e) {
console.log('Caught:', e.message);
} finally {
console.log('Done');
}