If you have:
var some = [0,1,2,3];
_.forEach(some, function (val) {
    if(val === 1) {
        // this return does nothing
        return;
    }
});
Looking at the underscore source you can break out of forEach using 
var breaker = {};
However breaker is not released to public scope and appears to be an internal variable.
