数组相关

数组填充

const initArr = [8, 8, 8];
const fillArr = new Array(5).fill(0);
console.log([...fillArr, ...initArr]); // [0, 0, 0, 0, 0, 8, 8, 8]