JSFiddle - React, Tailwind, and code Playground

by peterbenoit

JavaScript

(function(w,c){
    var _private = "Pete";
    function privateClass(){}
    function doSomething(){}
    
    doSomething.prototype.doSomethingElse = function(){
        alert('something else');        
    };
    
    window.doSomething = doSomething;
})(window,console);