If an array is sparse, say something like
var foo=[];
foo[3]=4;
foo['bar']='baz';
foo['quux']='moo';
is there a way to iterate through the entire array?
--
Christopher Benson-Manica | I *should* know what I'm talking about - if I
ataru(at)cybers pace.org | don't, I need to know. Flames welcome.
var foo=[];
foo[3]=4;
foo['bar']='baz';
foo['quux']='moo';
is there a way to iterate through the entire array?
--
Christopher Benson-Manica | I *should* know what I'm talking about - if I
ataru(at)cybers pace.org | don't, I need to know. Flames welcome.
Comment