JSFiddle - React, Tailwind, and code Playground
JavaScript
function Cat(name) {
this.says = "Meow";
this.who = function() {
alert(name);
}
this.say_stuff = function() {
alert(this.says);
};
}
var Duncan = new Cat('Duncan the Cat');
Duncan.say_stuff();
Duncan.who();