nextSibling vs childNodes (v3)

Revision 3 of this benchmark created on


Description

Test the relative performance of iterating through child nodes using nextSibling vs iterating through the childNodes array.

Preparation HTML

<div id="container">
</div>
<script>
  var container = document.getElementById('container');
  var s = "";
  for (var i=0; i<100; ++i) s+="<p>Child</p>";
  container.innerHTML = s;

  function process(element) {}
</script>

Test runner

Ready to run.

Testing in
TestOps/sec
childNodes
var len = container.childNodes.length,
    i;
for (i = 0; i < len; i++) {
 process(container.childNodes[i]);
}
ready
childNodes, cached
var nodes = container.childNodes,
    len = nodes.length,
    i;
for (i = 0; i < len; i++) {
 process(nodes[i]);
}
ready
nextSibling
var node = container.firstChild;
while (node) {
 process(node);
 node = node.nextSibling;
}
ready
Cloned children
var nodes = Array.prototype.slice.call(container.childNodes),
    len = nodes.length,
    i;
for (i = 0; i < len; i++) {
 process(nodes[i]);
}
ready

Revisions

You can edit these tests or add more tests to this page by appending /edit to the URL.