如何从同一个类创建两个不同的实例?

问题描述 投票:-1回答:1

我如何能显示,在控制台,两个实例的类猫:Skitty,9年和像素,6年?

(() => {
    class Cat {
        constructor(name, age) {
            this.name = name;
            this.age = age;
        }
    }
    document.getElementById("run").addEventListener("click",() => {
    // your code here

    })

})();

先谢谢你,如果这个问题很傻,很抱歉,我正在学习!

javascript arrays object instance
1个回答
0
投票
const instance1 = new Cat('Skitty', 9);
const instance2 = new Cat('Pixel', 6);
console.log(instance1, instance2);

0
投票

实例化并记录

我理解得很好吗?

class Cat {
    constructor(name, age) {
        this.name = name;
        this.age = age;
    }
}

console.log(
  new Cat('Skitty', 9),
  new Cat('Pixel', 6),
)
© www.soinside.com 2019 - 2024. All rights reserved.