JSFiddle - React, Tailwind, and code Playground

by harsh dand

JavaScript

var dis = function(){
    alert('cool');
}
  
(function() { 
	console.log(dis);
    dis();
    
  var dis = function(){
    alert('fool');
	}
})();