JSFiddle - React, Tailwind, and code Playground

by mbutubuntu

JavaScript

function foo(){
 
    this.version = "0.0.1";

    this.bar = function(z){
           this.version = "0.0.2";
           this.sayHello = function(){
             alert("hello");
           }                
    }

    this.test = function(){
            var ret = new this.bar("hey");
            return ret;        
            }               
    
}