JSFiddle - React, Tailwind, and code Playground

by bittersweetryan

HTML

var Cat = function(name){
    this.name = name;
}

JavaScript

var Cat = function(name){
    this.name = name;
};
    
//replace prototype
Cat.prototype ={
        getName : function(){
            return this.name;
        } 
};


Cat.prototype.constructor = Object.constructor;