JSFiddle - React, Tailwind, and code Playground
JavaScript
function testThings () {
try {
console.log('Dividing by zero...');
throw 'shit';
} finally {
console.log('In the finally...');
}
console.log('Also continuing with other stuff');
}
testThings();