vote up 2 vote down star

Which browsers other than Firefox support Array.forEach()? Mozilla say it's an extension to the standard and I realise it's trivial to add to the array prototype, I'm just wondering what other browsers support it?

flag

64% accept rate

4 Answers

vote up 3 vote down check

The JavaScript article of Wikipedia lists the JS versions by browser. forEach is part of JavaScript 1.6. So it is supported indeed by most browsers, except Opera 9.02 (which I just tested). Opera 9.5 (which I just installed!) supports it, along with indexOf for Array.

Surprisingly, it is not official. I don't see its support in the page ECMAScript support in Opera 9.5. Perhaps it is an overlook or perhaps only a partial support they don't want to advertise.

link|flag
vote up 0 vote down

Since IE doesn't support it (not even v8), I use jQuery.each() -- http://docs.jquery.com/Utilities/jQuery.each

link|flag
vote up 0 vote down

The Microsoft AJAX client library adds this to the Array prototype so if you have that client library in your site then you'll have it for sure.

link|flag
Does this change the Array implementation in IE? last time I checked, extending the Array object in IE failed. – scunliffe Oct 3 '08 at 18:21
I'd think so, I hardly think the MS AJAX team would make IE break :P – Slace Oct 3 '08 at 21:47
vote up 1 vote down

All modern browsers but IE.

link|flag

Your Answer

Get an OpenID
or

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