摘要: for 循环可以遍历数组 var myArray = [1,2,3]; for(var i=0; i<myArray.length; i++) { console.log(myArray[i]) } // 1 2 3 ES5 增加了数组的辅助迭代器,包括 forEach(...)、every(... 阅读全文
posted @ 2020-03-30 06:47 wzndkj 阅读(157) 评论(0) 推荐(0) 编辑