The break statement is a control statement that is used to jump out of the loop.
Syntax:
for( initialization; condition; statement){
//Block of statements
if(condition){
break;
}
}
Where:
initialization statement: is used to initialize the loop variable.
boolean expression: is used for condition check whether returns true or false.
statement: is used for either increment or decrement of the loop variable.
JavaScript for loop break example:
<html>
<head>
<script>
for (num=1; num<=10; num++) {
if(num==6){
break;
}
document.write(num + "<br/>")
}
</script>
</head>
<body>
</body>
</html>