JSFiddle - React, Tailwind, and code Playground
by chovy
JavaScript
var dog = function(sound){
this.getSound = function(){
return sound;
};
};
dog.prototype.speak = function(){
console.log( this.getSound() );
};
var spot = new dog('woof');
spot.speak();