当前位置:网站首页>for..in和for..of的区别
for..in和for..of的区别
2022-08-05 04:25:00 【懵懵懂懂学前端】
前一段时间我碰到一个这样的问题:随便使用for..in和for..of给我带来了不可预期的后果,和我想得有点不太一样。关于for...in和for..of之间到底有什么区别?什么时候用for..in?什么时候用for..of呢?接下来,我将用代码作为示例来展示它们两者的差别。
首先看看遍历数组时 for...in和for...of的区别:
由上可知,控制台输出结果可以正常显示,对数组进行遍历时,for..in获取到的是每次遍历项的索引值,而for...of每次遍历获取到的则是每一个遍历项的value值。
在看看关于遍历对象时 for..in和for..of的区别:
通过控制台我们可以看出,使用for...in遍历对象时,每一次遍历得到的都是对象中的key值,而使用for..of遍历时则会报错(obj is not iterable),译为:obj这个对象不可迭代的,不能使用for..of遍历对象,它获取到的不是每一个遍历项的value值。
总结:
遍历数组时:for..in获取到的是每一项的索引值,而for..of获取到的是每一项的值
遍历对象时:for..in获取到的是每一项的key值(也就是属性名),而for..of不能用于遍历对象,会报错
扩展内容:Object.keys(obj)可以获取到obj的keys值,用数组形式保存;Object.values(obj)可以获取到obj的value值,也是用数组形式保存
边栏推荐
猜你喜欢
工业级远距离无线传输装置的功能有哪些?
Haproxy搭建Web群集
Analyses the mainstream across technology solutions
Four-digit display header design
upload上传图片到腾讯云,如何上传图片
Android interview question - how to write with his hands a non-blocking thread safe queue ConcurrentLinkedQueue?
Mysql's redo log detailed explanation
What is ASEMI photovoltaic diode, the role of photovoltaic diode
[CISCN2019 华东南赛区]Web11
Paparazzi: Surface Editing by way of Multi-View Image Processing
随机推荐
UE4 opens door via interaction (keyboard key)
There are several common event handling methods in Swing?How to listen for events?
There are a lot of 4T hard drives remaining, prompting "No space left on device" insufficient disk space
[MRCTF2020]Ezpop(详解)
第一次性能测试实践,有“亿”点点紧张
UI自动化测试 App的WebView页面中,当搜索栏无搜索按钮时处理方法
C++ core programming
DNS被劫持如何处理?
七夕节赚徽章拉
日志导致线程Block的这些坑,你不得不防
数字孪生技术在电力系统中的应用现状
Cron(Crontab)--使用/教程/实例
Shell(4) Conditional Control Statement
Bosses, I noticed that a mysql CDC connector parameters scan. The incremental. Sna
UE4 第一人称角色模板 添加生命值和调试伤害
[Surveying] Quick Summary - Excerpt from Gaoshu Gang
[SWPU2019]Web1
How do newcomers get started and learn software testing?
Shell(4)条件控制语句
小程序_动态设置tabBar主题皮肤