JSFiddle - React, Tailwind, and code Playground

by ktstowell

JavaScript

(function() {
    var Merp = function() {
        this.prop = 'merp';
    
        alert(this);
    }

    Merp();    
})();