vote up 1 vote down star

Ok, I have this code:

var room = [ { time: 0, people: 0 } ];

and then:

time = 5;
for( var i in room ) {
  if( room[i].time < time ){
    spliceIndex = i + 1;
  }
}
console.log(spliceIndex);

And the console reads: 01 - Which means the 1 is concatenated which further means that i is a string, and not an integer as expected. Casting the index to integer fixed the problems, but I was banging my head for hours.... Can anyone explain why is this happening? I get this on Firefox 3.5 and Safari 4.

flag

75% accept rate
1  
Not an answer to your question, but you may want to use hasOwnPropertyin your for...in loops: stackoverflow.com/questions/85992/… – Joeri Sebrechts Jul 3 at 4:46

1 Answer

vote up 11 vote down check

Because for-in lists object properties, not array indexes. Object properties are strings, and array indexes show up as properties, only they are numeric strings.

link|flag
:) nobody said that in the javascipt books i read. thanks. – Discodancer Jul 3 at 2:16
That's why it's not a good idea to use a "for in" loop on arrays. They iterate over all the array's properties (except the built-in ones, which are non-enumerable), including string properties and properties inherited from Array.prototype. – Matthew Crumley Jul 3 at 4:48

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.