js 填充对象数组的方法 初始化指定长度的对象数组 方法一 Array(10).fill(null).map(() =>({}))// [{},{},···, {}] 方法二 Array.from(Array(10),() =>({}))// // [{},{},···, {}]