up vote 6 down vote favorite
share [g+] share [fb]

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?

link|improve this question

feedback

2 Answers

up vote 14 down vote accepted
var arr = Array.prototype.slice.call( htmlCollection )

will have the same effect using "native" code.

link|improve this answer
This made my day. – Joel Anair Dec 21 '08 at 4:09
1  
This doesn't work in IE – KooiInc Feb 13 '09 at 9:04
This fails in IE6. – Heath Borders Feb 26 '09 at 19:47
1  
One Caveat: That's basically an HTML Collection with access to all the array properties. It still updates as the DOM changes which means accessing properties like length still does a query of every element in the collection which can be powerful or powerfully slow depending on your needs. IE6 aside, I'm surprised it works as consistently as it does. – Erik Reppen Jan 19 '11 at 13:10
@Erik Reppen: The resulting arr does not seem to have the properties you describe. At least in Chrome, it ends up as a vanilla array that contains the collection contents at the time the collection was copied. In what browser are you seeing those effects? Or are you talking about the original htmlCollection? – Chris Nielsen May 21 '11 at 16:56
feedback

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|improve this answer
The OP asked for an other way than "iterating through the contents of said collection and manually pushing each item into an array", but that's precisely what the $A function does most of the time. – Luc125 Nov 13 '11 at 13:12
I think the point I was trying to make is that there isn't a nice way to do it, the prototype.js code shows that you can look for a 'toArray' method but failing that iteration the safest route – Gareth Davis Nov 13 '11 at 19:45
feedback

Your Answer

 
or
required, but never shown

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