for..in 、for..of 、 for await .. of

136 阅读1分钟
for .. in遍历得到 key可枚举的数据:数组、字符串、对象
for .. of遍历得到 value可迭代的数据:数组、字符串、Set、Map

是否可枚举: Object.getOwnPropertyDescriptors(obj) -> enumerable: true

是否可迭代: arrSymbol.iterator -> next()

知识点

for await .. of
Promise.all for await .. of
用于遍历一组 Promise