jQuery.each vs. for loop vs Ext.Array.each (v172)

Revision 172 of this benchmark created on


Preparation HTML

<script src="//ajax.googleapis.com/ajax/libs/jquery/1/jquery.min.js">
</script>
<script src="http://cdn.sencha.io/ext-4.1.0-gpl/ext-all.js">
</script>
<script>
  $.fn.forEach = Array.prototype.forEach;
  var extArrayEach = Ext.Array.each;
  var a = $('*');
</script>

Test runner

Ready to run.

Testing in
TestOps/sec
jQuery.each
$.each(a, function(index, node) {
 var e = node;
});
ready
for loop
for (var i = 0, len = a.length; i < len; i++) {
 var e = a[i];
};
ready
for countdown
for (var i = a.length-1; i >= 0; i--) {
 var e = a[i];
};
ready
Ext.Array.each
extArrayEach(a, function(index, node) {
 var e = node;
});
ready

Revisions

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