JSFiddle - React, Tailwind, and code Playground
by smacky311
HTML
<div id="output">none</div>
JavaScript
"use strict";
console.log('test');
try{
var add = (x,y) => x + y;
var result = add(1,1);
console.log(result);
}catch(ex){
console.log(ex.message);
}