for-in循环

Posted wanan_01

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了for-in循环相关的知识,希望对你有一定的参考价值。

//for in循环遍历
var objs={"username":"hh","age":"20","sex":"boy"}
for(i in objs){
console.log(i); //uesername age sex
console.log(objs[i]); //hh 20 boy 这里用括号不用点读取属性的原因是:i可能为数字,点可能会被当做小数点来对待
}

以上是关于for-in循环的主要内容,如果未能解决你的问题,请参考以下文章

python之range()函数for-in循环和while循环

for-in和for 循环 的区别

在 for-in 循环中进行类型转换

for-in循环

Swift:如何将 for-in 循环与可选参数一起使用?

for-in循环