JSFiddle - React, Tailwind, and code Playground

by mnk

JavaScript

const fn1 = () => {

  	const err = new Error('test')
  	console.log(err.stack)

}


const fn2 = () => {
	fn1()
}

fn2()