I\'m building an app using meteor.js and MongoDB and I have a question about cursor.forEach(). I want to check some conditions in the beginning of each forEach iteration and
Use continue statement instead of return to skip an iteration in JS loops.