The code in node.js is simple enough.
_.each(users, function(u, index) {
if (u.superUser === false) {
//return false would break
//continue?
}
//Some code
});
My question is how can I continue to next index without executing "Some code" if superUser is set to false?
PS: I know an else condition would solve the problem. Still curious to know the answer.