jQuery.each vs. for loop (v116)

Revision 116 of this benchmark created on


Preparation HTML

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

Test runner

Ready to run.

Testing in
TestOps/sec
jQuery.each
$.each(a, function() {
 var e = this;
});
ready
for loop
for (var i = 0, len = a.length; i < len; i++) {
 var e = a[i];
};
ready
jQuery.each with pre-defined function
var f = function(i) {
 var e = i;
}
$.each(a, f);
ready

Revisions

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