for....in 循环
Posted wangdashi
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了for....in 循环相关的知识,希望对你有一定的参考价值。
for....in 主要是来遍历对象
var obj={ "1": "first", "two": "zoo", "3": "2", "three": "34", "4": "1", "2": "second" }; for (var i in obj) { console.log(i+":"+obj[i]); };
输出结果:
//1:first //2:second //3:2 //4:1 //two:zoo //three:34
以上是关于for....in 循环的主要内容,如果未能解决你的问题,请参考以下文章
JS中for...in 语句用于对数组或者对象的属性进行循环操作吗?
循环 - forEach、for、for....of、for...in