JavaScript Break And Continue
Sometimes you want to terminate a loop in the middle and not let the loop terminate after all iterations have exhausted. The JavaScript break statement will terminate a loop, switch block or any other conditional block with or without label. Labeled Statement The labeled statement is an identifier for a statement or a block that … Read more