📜  使用原型向多个对象插入属性 - Javascript 代码示例

📅  最后修改于: 2022-03-11 15:03:09.238000             🧑  作者: Mango

代码示例1
class Dog {
  constructor(name) {
    this.name = name;
  }

  bark() {
    return `Woof!`;
  }
}

const dog1 = new Dog("Daisy");
const dog2 = new Dog("Max");
const dog3 = new Dog("Spot");

Dog.prototype.play = () => console.log("Playing now!");

dog1.play();