JSFiddle - React, Tailwind, and code Playground

by PerroAZUL

JavaScript

var ref = null;

(function() {
    function MyObj(str) {
        this.name = str;
        this.getName = function() { return this.name; }
    }
})();