function Pet (name) { this.name = name } Pet.prototype.play = function () { console.log(`${ this.name }在玩耍呀。`) } function Cat (name) { this.name = name } Cat.prototype = new Pet() const cat = new Cat('板栗') cat.play()