一、使用Array.apply
let
arr= Array.apply(null, { length: 10 }).map((item,index)=>{
return index;
});
console.log(arr);
//(10)
[0, 1, 2, 3, 4, 5, 6, 7, 8, 9]
//原理:Array.apply的第二个参数是类数组调用Array.apply(null, { length: 10 })等于生成了长度为10内容都为undefinded的数组
二、使用Array.from
let arr= Array.from({length:10}).map((item,index)=>{
return
index;
});
console.log(arr);
//(10) [0, 1, 2, 3, 4, 5, 6, 7, 8, 9]
三、使用Array.prototype.fill
let arr= new
Array(10).fill(1).map((item,index)=>{
return
index;
});
console.log(arr);
//(10) [0, 1, 2, 3, 4, 5, 6, 7, 8, 9]
//说明一下:new Array(10).fill(1)生成一个长度为10的空数组并用1填充