摘要: for循环遍历 let array = ['a','b','c']; for (let i = 0;i < array.length;i++){ console.log(array1[i]); // a b c } 用for in的方遍历数组 for(let index in array) { co 阅读全文
posted @ 2020-03-06 14:38 一波王炸 阅读(254) 评论(0) 推荐(0)