JSFiddle - React, Tailwind, and code Playground

by rexonms

JavaScript

console.clear()
const tc = async ({ res }) => {
 try {
 	console.log('try start')
	f 
  console.log('try end')
 } catch (e) {
  console.log('catch start')
 	return console.log('e', e);
  console.log('catch end')
 }
}

tc({ res: 'what' });