前端面试必备知识:迭代器(iterator)的概念
前言:在JavaScript中,计数循环就是最简单的迭代。面试的时候经常被问到的一个问题:for-of 和for-in的区别?for - in 是对对象的进行遍历;for - of 是对数组进行遍历,可以使用continue、break、return、thorow提前退出。for-of为什么不能遍历对象,var s = { name: 'pretty', age: 10}for(let item of s) { console.log(item)}//