JSFiddle - React, Tailwind, and code Playground

by pertrai1

HTML

<div id="main"></div>

JavaScript

var utility = {};
(function() {
    utility.KEYS = {
        L: 9,
        R: 10,
        U: 12,
        D: 14
    };
    
    utility.createTest = function() {
        console.log('this is a test');
    };
    
    utility.testThis = function() {
        console.log('this is another test');
    };
})();
        

console.log(utility);
console.log('RRR: ' + utility.KEYS.L + ' again');
utility.testThis();