Status: New
Owner: ----

New issue 164 by insideable: Wrong order in Object properties interation
http://code.google.com/p/v8/issues/detail?id=164

Code:

var a = {"foo":"bar", "3": "3", "2":"2", "1":"1"};
for(var i in a) { print(i) };

produces following output:
foo
1
2
3

expected output:
foo
3
2
1


-- 
You received this message because you are listed in the owner
or CC fields of this issue, or because you starred this issue.
You may adjust your issue notification preferences at:
http://code.google.com/hosting/settings

--~--~---------~--~----~------------~-------~--~----~
v8-dev mailing list
[email protected]
http://groups.google.com/group/v8-dev
-~----------~----~----~----~------~----~------~--~---

Reply via email to