vote up 2 vote down star

I have a JSON list that I want to iterate over, but skip the first entry, like thus:

$.each(
    data.collection,
    function() { DoStuffButOnlyIfNotTheFirstOne(); }
);

Any ideas?

flag

4 Answers

vote up 11 vote down check

Is this good enough?

$.each(
    data.collection,
    function(i) {
        if (i > 0)
            DoStuff();
    }
);
link|flag
Brilliant, thanks – jacko Sep 8 at 22:27
vote up 9 vote down
$.each(
    data.collection,
    function(i) {
        if(i)
            DoStuffButOnlyIfNotTheFirstOne();
    }
);

or, probably more efficiently:

$.each(
    data.collection.slice(1),
    function() {
        DoStuff();
    }
);
link|flag
i like that, even though its slightly less readable then accepted solution. – mkoryak Sep 8 at 22:28
vote up 0 vote down
$.each(
    data.collection,
    function(i) { if (i>0) DoStuffButOnlyIfNotTheFirstOne(); }
);
link|flag
vote up 0 vote down

You can use the good old firstFlag approach:

var firstFlag = true;
$.each(
data.collection,
  function() { 
    if(!firstFlag) DoStuffButOnlyIfNotTheFirstOne(); 
    firstFlag = false;
}

But instead, I'd recommend that you filter your data collection first to remove the first item using a selector.

link|flag
Shouldn't firstFlag = false be after the if statement? – seth Sep 8 at 22:27
Doh - good catch. Fixed. – Jon Galloway Sep 8 at 22:29

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.