function Animal() {

}

Animal.prototype.say = function () {
console.log('animal')
}

function Dog() {

}

// Dog.prototype = new Animal();

// Dog.prototype = Animal.prototype;

Dog.prototype = Object.create(Animal.prototype);

const d = new Dog();
d.say(); // animal