Node.js - Error Handling Patterns
What will be printed to the console when running this code?
Promise.reject('Oops').catch(() => console.log('Handled')).then(() => console.log('Done'));