gpt4 book ai didi

javascript - Javascript对象属性的迭代顺序?

转载 作者:行者123 更新时间:2023-12-02 18:49:32 24 4
gpt4 key购买 nike

如果我有这个代码:

o["a"]=1;
o["b"]=1;
o["c"]=1;
o["d"]=1;


for (var k in o)
{
alert(k)
}
  • 它是否总是(跨浏览器)按照添加属性的顺序发出警报?

  • 那这个呢? (同样的问题)

    var o={a:1,b:1,c:1,d:1}

最佳答案

没有。顺序未指定。来自 the spec :

The mechanics and order of enumerating the properties ... is not specified.

关于javascript - Javascript对象属性的迭代顺序?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/15967566/

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