JSFiddle - React, Tailwind, and code Playground
by gisheri
JavaScript
Dog = function(name, breed) {this.name=name; this.breed = breed;}
fido = new Dog('fido', 'poodle');
Dog.prototype.Nuisance = true;
console.log(fido);
by gisheri
Dog = function(name, breed) {this.name=name; this.breed = breed;}
fido = new Dog('fido', 'poodle');
Dog.prototype.Nuisance = true;
console.log(fido);