Roadmap to becoming a developer in 2022
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
Prashant Singh e9dd0942e1
added content to - prototypal inheritance, implicti type casting, keyed collections, structured data, break continue, labeled statements, comparison operators, string operators, conditional operators (#2032)
2 years ago
..
100-labeled-statements.md added content to - prototypal inheritance, implicti type casting, keyed collections, structured data, break continue, labeled statements, comparison operators, string operators, conditional operators (#2032) 2 years ago
readme.md added content to - prototypal inheritance, implicti type casting, keyed collections, structured data, break continue, labeled statements, comparison operators, string operators, conditional operators (#2032) 2 years ago

readme.md

Break continue

break statement, without a label reference, can only be used to jump out of a loop or a switch block.

continue statement, with or without a label reference, can only be used to skip one loop iteration.

Free Content JavaScript MDN Docs - continue statement JavaScript MDN Docs - break statement W3Schools – JavaScript Tutorial