JSFiddle - React, Tailwind, and code Playground

by Michael Underwood

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();