let arr = ['el1', 'el2', 'el3'];
arr.addedProp = 'arrProp';
// elKey are the property keys
for (let elKey in arr) {
console.log(elKey);
}
console.log('===');
// elValue are the property values
for (let elValue of arr) {
console.log(elValue)
}
0
1
2
addedProp
====
el1
el2
el3
1. for in 以任意顺序遍历一个对象的除Symbol以外的可枚举属性,包括继承的可枚举属性
for ... in 是遍历的对象key ,初始是为object 构建 的,建议只用到对象上面
2. for ... of 遍历可迭代对象(
Iterator)的value 值 ,例如
Array,Map,Set,String,TypedArray,arguments