netscape & associative arrays

G

g

Hi,

I would like to step through all the key-value pairs in an associative
array. I'm trying:


for (var i=0 in hashOfItems) { // go through all keys in the hash
hashOfItems
// do sth
}


which works fine in Internet Explorer but does not seem to be
recognised in Netscape Navigator. What is the right way to write this?

Thanks,
Gina
 
M

Martin Honnen

g said:
I would like to step through all the key-value pairs in an associative
array. I'm trying:


for (var i=0 in hashOfItems) { // go through all keys in the hash
hashOfItems
// do sth
}

Why do you want to set i = 0?? Simply do

for (var key in object) {

}
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Members online

No members online now.

Forum statistics

Threads
473,995
Messages
2,570,230
Members
46,819
Latest member
masterdaster

Latest Threads

Top