JSFiddle - React, Tailwind, and code Playground
JavaScript
var Person = function() {
this.bar = "bar";
};
Person.prototype.foo = "foo";
var Chef = function() {
this.goo = "goo";
};
Chef.prototype = new Person();
var cody = new Chef();
console.log(cody.bar);
console.log(cody);