forEach,for in,for of循环的用法
摘要:
一、一般的遍历数组的方法: 二、用for in的方遍历数组 三、forEach 四、用for in不仅可以对数组,也可以对enumerable对象操作 五、在ES6中,增加了一个for of循环,使用起来很简单 let s = "helloabc"; for(let c of s) { consol 阅读全文
posted @ 2018-08-27 17:51 奔跑吧人生 阅读(285) 评论(0) 推荐(0) 编辑