其他分享
首页 > 其他分享> > for of _ for in _foreach

for of _ for in _foreach

作者:互联网

for of 是ES6版本发布的

在可在map 、set 、arguments上执行迭代

 

for in的效率没有for of 高

for in会遍历原型链上的所有属性

//可使用obj.hasOwnProperty(key)  只记录键

  

标签:ES6,set,obj,map,foreach,key,hasOwnProperty
来源: https://www.cnblogs.com/lxq3280/p/16338823.html