jQuery.each vs. various loop alternatives

JavaScript performance comparison

Revision 4 of this test case created by petsel

Preparation code

<script src="//ajax.googleapis.com/ajax/libs/jquery/1/jquery.min.js"></script>
<script>
  var a = $('*').get(),
      e;
</script>

Preparation code output

Test runner

Warning! For accurate results, please disable Firebug before running the tests. (Why?)

Java applet disabled.

Testing in unknown unknown
Test Ops/sec
jQuery.each
$.each(a, function() {
 e = this;
});
pending…
for loop
for (var i = 0, len = a.length; i < len; i++) {
 e = a[i];
}
pending…
while loop (partly fixed [see rv.3] - prefix decrement - still not safe enough due to the assignment within a falsy break condition)
var i = a.length;

while (e = a[--i]) {}
pending…
while loop (decrementing)
var i = a.length;

while (--i) {
 e = a[i];
}
pending…
while loop (incrementing)
var i = -1,
    len = a.length;

while (++i < len) {
 e = a[i];
}
pending…
alternative for loop
for (var i in a) {
 e = a[i];
}
pending…

Compare results of other browsers

Revisions

You can edit these tests or add even more tests to this page by appending /edit to the URL. Here’s a list of current revisions for this page:

1 comment

astaza.com commented :

nice puchmark thank you

Add a comment