Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

jquery each vs. native for

Tags:

jquery

var arr=[];
var k;
for(var i=0;i<5000;i++)
 arr[i]=i;

console.time("native loop");
var len=arr.length;
for(var j=0;j<len;j++)
 k=arr[j];
console.timeEnd("native loop");

console.time("jq loop");
$(arr).each(function(i,el){
 k=el;
});
console.timeEnd("jq loop");

It is generating, 14ms for native loop and 3ms for Jquery each.

I'm using Jquery 1.6.2. If Jquery uses native loop behind the scene, then how come, this is possible??

like image 833
Avneesh Raghav Avatar asked Dec 20 '11 06:12

Avneesh Raghav


People also ask

Can I use foreach with jQuery?

Learn how to loop through elements, arrays and objects with jQuery using the $. each() function, jQuery's foreach equivalent. jQuery's foreach equivalent can be very useful for many situations. These examples will get you started and teach you how you can loop through arrays, objects and all kinds of HTML elements.

Which loop is faster in jQuery?

In case of multiple iterations of the loop, and where the size of array is too large, for loop is the preference as the fastest method of elements' iteration.

Why we use each in jQuery?

each(), which is used to iterate, exclusively, over a jQuery object. The $. each() function can be used to iterate over any collection, whether it is an object or an array. In the case of an array, the callback is passed an array index and a corresponding array value each time.

What is $$ in jQuery?

$ is another, which is just an alias to jQuery . $$ is not provided by jQuery. It's provided by other libraries, such as Mootools or Prototype.


1 Answers

I would think that it has to do with the scope of your index variable -- your j variable is a global, which is about the slowest case of variable access. Every time that your loop has to reference j, it needs to check all the way up the scope chain, back to the global object, and then get the variable value from there.

I get similar numbers to you in my console (Chrome, OS X -- 13-15ms for the for loop, 3-4ms for jQuery).

But, if I do this:

(function() {
    console.time("native loop with function scope");
    var len=arr.length;
    for(var j=0;j++<len;)
        k=arr[j];
    console.timeEnd("native loop with function scope");})()

It executes in just 5ms.

The difference in this case is that j is a function-local variable, available immediately in the first place the JavaScript engine looks for variables. len is similarly local; the only globals in this case are k and arr.

To get even more speed out of this, make k a function-scope variable, and pass in arr as a parameter:

(function(arr) {
    console.time("native loop 2");
    var len=arr.length, k;
    for(var j=0;j++<len;)
        k=arr[j];
    console.timeEnd("native loop 2");})(arr)

> native loop 2: 0ms

Well, that's a bit too fast now. Maybe arr should be bigger:

var arr=[];
for(var i=0;i<50000;i++)
    arr[i]=i;

[Try again...]
> native loop 2: 1ms

That slowed it down a bit.

With a 500k-element array, this code runs in 4ms in the JavaScript console on my machine. At 5M, it takes 36ms.

You should also note that you aren't using a raw jQuery.each() call -- you are first wrapping your array in $(), creating a jQuery object, and then calling .each on that. A fairer test might be to run

$.each(arr, function(i,el){
    k=el;
});

That should be pretty close to the timing of the second example above. jQuery adds a bit of overhead; checking the types of its arguments, but after that it runs a pretty tight loop.

like image 76
Ian Clelland Avatar answered Nov 15 '22 09:11

Ian Clelland