for of 與 for in

weixin_30639719發表於2020-04-05

參考: https://www.cnblogs.com/m2maomao/p/7743143.html

for of : es6引入的,可以遍歷array、map、set、string、arguments(偽陣列),不可以遍歷普通物件,可以使用breakcontinuereturn 和 throw退出迭代

for in: 遍歷普通物件的可列舉屬性

轉載於:https://www.cnblogs.com/lurending0417/p/10514962.html

相關文章