JSFiddle - React, Tailwind, and code Playground

by guyluchenbill

HTML

<div id='output'>
	<p>hey hello</p>
</div>

JavaScript

var $ = function(id){ return document.getElementById(id); }; 
 
var a = function() { 
	var x = 'shit shit shit'; 
	return alert(x); 
};
var b = function() { 
	var z = a(); 
}; 
b();