JSFiddle - React, Tailwind, and code Playground
by alr3
JavaScript
function Cow() {
this.moo = function() { console.log("Moo"); },
this.eat = function() { console.log("Eat"); }
}
function Foo() {
};
Foo.prototype = new Cow();
var dive = new Foo();
dive.moo();
dive.eat();