vote up 4 vote down star

Is there a more efficient way to convert an HTMLCollection to an Array, other than iterating through the contents of said collection and manually pushing each item into an array?

flag

2 Answers

vote up 9 vote down check
var arr = Array.prototype.slice.call( htmlCollection )

will have the same effect using "native" code.

link|flag
This made my day. – Joel Anair Dec 21 '08 at 4:09
This doesn't work in IE – KooiInc Feb 13 at 9:04
This fails in IE6. – Heath Borders Feb 26 at 19:47
vote up 1 vote down

For a cross browser implementation I'd sugguest you look at prototype.js $A function

copyed from 1.6.1:

function $A(iterable) {
  if (!iterable) return [];
  if ('toArray' in Object(iterable)) return iterable.toArray();
  var length = iterable.length || 0, results = new Array(length);
  while (length--) results[length] = iterable[length];
  return results;
}

It doesn't use Array.prototype.slice probably because it isn't available on every browser. I'm afraid the performance is pretty bad as there a the fall back is a javascript loop over the iterable.

link|flag

Your Answer

Get an OpenID
or

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