From the JSLint docs:
continueStatementAvoid use of the continue statement. It tends to obscure the control flow of the function.
So take it out entirely if you want to conform to the conventions that JSLint follows.
From the JSLint docs:
continueStatementAvoid use of the continue statement. It tends to obscure the control flow of the function.
So take it out entirely if you want to conform to the conventions that JSLint follows.