Skip to content

Instantly share code, notes, and snippets.

function Animal(genus, species) {
var animal = Object.create(Animal.prototype);
animal.genus = genus;
animal.species = species;
return animal;
}
function Dog(species) {
var dog = Object.create(Dog.prototype);