JSFiddle - React, Tailwind, and code Playground

by ryanwheale

JavaScript

(function() {
    try {
        foo();
    } catch(ex) {
        alert("ahhhhh, what's going on?!?!?\n\n" + ex.message);
    }
    
    var foo = function() {
        alert("I was hoisted to the top of this scope before execution :)");
    }
})();