Wy not use plain return?
function recurs(comment){
comment.comments.forEach(function(elem){
recurs(elem);
if(...) return;
});
it will return from 'recurs' function. I use it like this. Althougth this will not break from forEach but from whole function, in this simple example it might work