jQuery.each vs. for loop

JavaScript performance comparison

Revision 109 of this test case created

Preparation code

<script src="//ajax.googleapis.com/ajax/libs/jquery/1/jquery.min.js">
</script>
<script>
  var a = $('*').get();
</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() {
  var e = this;
});
pending…
for loop
for (var i = 0, len = a.length; i < len; i++) {
  var e = a[i];
};
pending…
xeach
var xeach = function(items, callback) {
    for (var i = 0, len = items.length; value = items[i], i < len; i++) {
      callback.apply(value);
    }
    };
xeach(a, function() {
  var e = this;
});
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:

0 comments

Add a comment