JSFiddle - React, Tailwind, and code Playground

JavaScript

(function(){
    console.assert(typeof foo == 'undefined');
    foo();
    
    if (true) {
        function foo(){
            alert('hi')
        }
    }
    
}());