我正在尝试使用特定类的对象创建具有特定长度的数组。
我知道我可以使用for循环来做到这一点。即使这是一种更简单的方法,在这种情况下,我还是希望您使用其他方法。
class Dog{
constructor(){
this.age = Math.random() * 30;
}
}
var dogs = [];
for(let i = 0; i < 100; i ++){
dogs.push(new Dog());
我想要以下内容:
var dogs = new Array<Dog>(100);
var dogs = new Dog()[100];
谢谢。