JSFiddle - React, Tailwind, and code Playground

by chiefGui

JavaScript

(function () {
    return x();
    
    x = function () {
        console.log('hello?');
    };
    
    function x () {
        console.log('is anybody there?');
    };
})();