Object element looping

ok, some new cool feature I run into:

f10 compiler:


var arr = {a:0, b:1, c:2, d:3}

for(var i in arr) trace(i);


as2 file: traces a,b,c,d
as3 file: traces b,c,d,a

however: when we use an array in for…in loop:


var arr = [0,1,2,3]

for(var i in arr) trace(i);

as2: 3,2,1,0
as3:0,1,2,3

granted: in an Object, there’s no frequency of elements overall… and actually looping an array seems more logical in as3… but a consistency in language versions sometimes IS ACTUALLY A GOOD THING!

so basically: here’s a question to You ADOBE guys: are you like from another planet or you just hate scripters???

dnx, any other productive criticism against as2 -> as3 much appreciated!