for of 与 for in
Posted lurending0417
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了for of 与 for in相关的知识,希望对你有一定的参考价值。
参考: https://www.cnblogs.com/m2maomao/p/7743143.html
for of : es6引入的,可以遍历array、map、set、string、arguments(伪数组),不可以遍历普通对象,可以使用break
、continue
、return
和 throw退出迭代
for in: 遍历普通对象的可枚举属性
以上是关于for of 与 for in的主要内容,如果未能解决你的问题,请参考以下文章