gpt4 book ai didi

javascript - javascript "for x in array"保证订单吗?

转载 作者:行者123 更新时间:2023-12-03 01:06:53 25 4
gpt4 key购买 nike

我知道使用for...in是针对对象的,我也知道 for i=0;i<arr.length;i++循环工作正常,但有时我想使用 for..in s 用于循环数组(我用 python 和 js 编码,但我可怜的大脑不想不断改变我的编码风格。)

我的问题是:是否可以保证使用 for...in会按顺序给我数组对象吗?

PS。我的问题专门针对数组,而不是顺序可能不明确的对象,所以我认为它可能会有所不同。

最佳答案

不,即使有数组索引,也不能保证属性顺序。如MDN说:

Array indexes are just enumerable properties with integer names and are otherwise identical to general object properties. There is no guarantee that for...in will return the indexes in any particular order. The for...in loop statement will return all enumerable properties, including those with non–integer names and those that are inherited.

我认为使用for..in的情况并不多。如果您使用数组,最好使用数组方法,例如 forEachmapreduce 等。

关于javascript - javascript "for x in array"保证订单吗?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/52359738/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com