Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I want to use return false to break a .each() but also return a value at the same time. How can I do this?

Please refer to a work-around function to see what I am trying to do:

function HasStores(state) {
    var statehasstores = false;


    $(stores).each(function (index, store){
        if(state == store.state && store.category == "meyers"){
            statehasstores = true;
            return false; //break
        }
    });


    return statehasstores;
}

What Id like to do in pseudo code is:

Function () {
    for() {
        if found {
            return true;
        }   
    }
    return false;
}
share|improve this question
It is already doing that! Look my example jsfiddle.net/aXkcW – BrunoLM Oct 15 '10 at 23:09

5 Answers

up vote 13 down vote accepted

You're doing it right...

Quote from http://api.jquery.com/each/

"We can stop the loop from within the callback function by returning false."

share|improve this answer

Use a variable outside the loop to get the value and use it afterward.

var value;

$(stores).each(function (index, store) {
    if(state == store.state && store.category == "meyers"){
        statehasstores = true;
        value = store; // added line
        return false; //break
    }
});

alert(value);

The way you're doing is just fine. I've tested on jsFiddle, see an example here.

It's not working for you? Can you show more context?

share|improve this answer

What you're suggesting is the way to do it. I'd think of it less as a workaround and more as an idiom.

share|improve this answer

Alternatively, you could use a for() loop instead of each(), and just return the value.

share|improve this answer

Be creative:

try {
  $(stores).each(function (index, store) {
    if(state == store.state && store.category == "meyers"){
      throw store;
    }
  });
}
catch(e) {
  // you got e with the value
}

No, I was just kidding, don't use this :). It came as an idea I liked to share.

share|improve this answer
I like the idea. :P – BrunoLM Oct 15 '10 at 22:51

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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