摘要: // for in遍历的是数组的索引(即键名),而for of遍历的是数组元素值。 let arr = [1,2,3,4,5,6,7] for(let index of arr){ // console.log(index)//1 2 3 4 5 6 7 } for(let index in arr 阅读全文
posted @ 2020-01-20 14:45 曼巴博博 阅读(2921) 评论(0) 推荐(0) 编辑