遍历for...in...和for...of...的区别
2017-07-11 本文已影响0人
林小刀2_0
for...in 遍历的是对象的属性,而for...of遍历的是对象的属性值:
var arrs = [1,2,3,4.5];
for(let x in arrs){
console.log(x) // 输出结果的0,1,2,3,4,5
}
for(let x of arrs){
console.log(x); //输出结果是1,2,3,4,5
}