写在前面 知识点: 数组 栈 队列 链表 树 空间/时间复杂度 数组 创建数组 const newArr = new Array(7).fill(1); 遍历 for循环(优先推荐) let i; for(i=0;i<newArr.length;i++) { console.log(arr[i], i); } forEach array.forEach((item, index) => { console.log(item, index); }) map const newArr = arr.ma...