Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.
[1,2,3].forEach(function(el) {
    if(el === 1) break;
});

How can I do this using the new forEach method in JavaScript?

share|improve this question
1  
I've tried "return", "return false" and "break". Break crashes and return does nothing but continue iteration. Thanks. – Scott Apr 14 '10 at 21:58

7 Answers

up vote 86 down vote accepted

There's no built-in ability to break in forEach. To interrupt execution you would have to throw an exception of some sort. eg.

var BreakException= {};

try {
    [1,2,3].forEach(function(el) {
        if(el === 1) throw BreakException;
    });
} catch(e) {
    if (e!==BreakException) throw e;
}

JavaScript exceptions aren't terribly pretty. An traditional for loop may be more appropriate if you really need to break inside it.

Instead, use of Array#some:

[1,2,3].some(function(el) {
    return el === 1;
});

This works because some returns true as soon as any of the callbacks, executed in array order, return true, short-circuiting the execution of the rest.

some, its inverse every (which will stop on a return false), and forEach are all ECMAScript Fifth Edition methods which will need to be added to the Array.prototype on browsers where they're missing.

share|improve this answer
2  
Thanks. I didn't know about some. The exception thing seems like too big a hack. I'd rather just use for in that case. – Scott Apr 14 '10 at 22:14
2  
@Scott, you must not use for...in for arrays – user422039 Apr 26 '11 at 18:47
2  
@user422039 @Scott It depends on what we need. for...in with hasOwnProperty works just like forEach (except the second works with a callback). You can use it if you want. Although I would use $.each from jQuery and some if not using jQuery (although for breaking it needs to return true instead of false, but doesn't require a return true; at the end of callback, like every requires). – pepkin88 Oct 2 '11 at 17:16
4  
@pepkin88 for...in even with hasOwnProperty isn't guaranteed to work the same as forEach. In particular you may (and sometimes do, depending on browser) get the properties in the ‘wrong’ order. Even in cases where you don't care, I'd avoid it. Then again, this argument is irrelevant to the question; I think user422039 just misread what Scott said about using for. – bobince Oct 2 '11 at 22:08
I think what he meant was: "I'd rather just use for in that case." And for is obviously correct. – Rudie Dec 23 '12 at 21:24

Maybe I'm missing something here, but it looks like you might be falling victim of the shiny-new-toy disease. Why not just use a standard for/break? forEach is designed to be run against each element, hence the name. It's not called forSome ;-)

share|improve this answer
3  
+1 witty remark – Herman Junge Jan 19 '12 at 6:01
3  
If by standard, you mean an ES3 style for loop, I imagine because he'd like to keep his code short and free of boilerplate. Since ES5 Array.some Array.every can handle this, why not use them? – nailer Jun 12 '12 at 10:25
+1 makes since haha – SalmanPK Sep 3 '12 at 21:44

If you would like to use Dean Edward's suggestion and throw the StopIteration error to break out of the loop without having to catch the error, you can use the following the function (originally from here):

// Use a closure to prevent the global namespace from be polluted.
(function() {
  // Define StopIteration as part of the global scope if it
  // isn't already defined.
  if(typeof StopIteration == "undefined") {
    StopIteration = new Error("StopIteration");
  }

  // The original version of Array.prototype.forEach.
  var oldForEach = Array.prototype.forEach;

  // If forEach actually exists, define forEach so you can
  // break out of it by throwing StopIteration.  Allow
  // other errors will be thrown as normal.
  if(oldForEach) {
    Array.prototype.forEach = function() {
      try {
        oldForEach.apply(this, [].slice.call(arguments, 0));
      }
      catch(e) {
        if(e !== StopIteration) {
          throw e;
        }
      }
    };
  }
})();

The above code will give you the ability to run code such as the following without having to do your own try-catch clauses:

// Show the contents until you get to "2".
[0,1,2,3,4].forEach(function(val) {
  if(val == 2)
    throw StopIteration;
  alert(val);
});

One important thing to remember is that this will only update the Array.prototype.forEach function if it already exists. If it doesn't exist already, it will not modify the it.

share|improve this answer

You can use every method:

[1,2,3].every(function(el) {
    return !(el === 1);
});

for old browser support use:

if (!Array.prototype.every)
{
  Array.prototype.every = function(fun /*, thisp*/)
  {
    var len = this.length;
    if (typeof fun != "function")
      throw new TypeError();

    var thisp = arguments[1];
    for (var i = 0; i < len; i++)
    {
      if (i in this &&
          !fun.call(thisp, this[i], i, this))
        return false;
    }

    return true;
  };
}

more details here.

share|improve this answer

Also you could use jQuery.each(function(element, index) {}); as soon as you can use return false; inside

share|improve this answer
Good reason to use jQuery. forEach in native javascript is still lacking. – Alex Grande Feb 11 '12 at 8:46
@AlexGrande jQuery's forEach and JavaScript's forEach are not compatible. – Bjorn Tipling Apr 22 at 12:56

Found this solution on another site. You can wrap the forEach in a try / catch scenario.

if(typeof StopIteration == "undefined") {
 StopIteration = new Error("StopIteration");
}

try {
  [1,2,3].forEach(function(el){
    alert(el);
    if(el === 1) throw StopIteration;
  });
} catch(error) { if(error != StopIteration) throw error; }

More details here: http://dean.edwards.name/weblog/2006/07/enum/

share|improve this answer

This is just something I came up with to solve the problem... I'm pretty sure it fixes the problem that the original asker had:

Array.prototype.each = function(callback){
    if(!callback) return false;
    for(var i=0; i<this.length; i++){
        if(callback(this[i], i) == false) break;
    }
};

And then you would call it by using:

var myarray = [1,2,3];
myarray.each(function(item, index){
    // do something with the item
    // if(item != somecondition) return false; 
});

Returning false inside the callback function will cause a break. Let me know if that doesn't actually work.

share|improve this answer

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.