參考: https://www.cnblogs.com/m2maomao/p/7743143.html
for of : es6引入的,可以遍歷array、map、set、string、arguments(偽陣列),不可以遍歷普通物件,可以使用break
、continue
、return
和 throw退出迭代
for in: 遍歷普通物件的可列舉屬性
參考: https://www.cnblogs.com/m2maomao/p/7743143.html
for of : es6引入的,可以遍歷array、map、set、string、arguments(偽陣列),不可以遍歷普通物件,可以使用break
、continue
、return
和 throw退出迭代
for in: 遍歷普通物件的可列舉屬性
轉載於:https://www.cnblogs.com/lurending0417/p/10514962.html