index.js
function Animal(race) {
this.race = race;
}
Animal.prototype.eat = function () {
console.log(`${this.race} is eatting.`);
};
const bird = new Animal("bird");
const dog = new Animal("dog");
bird.eat();
dog.eat();
console.log(bird.eat === dog.eat); // true