JSFiddle - React, Tailwind, and code Playground

by Kaleb Hornsby

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();