what is break and continue statements in javascript explain with the help of program. code example
Example 1: js continue and break
for (i = 0; i < 10; i++) {
if (i === 3) { continue; }
text += "The number is " + i + "<br>";
}
Example 2: js continue and break
for (i = 0; i < 10; i++) {
if (i === 3) { break; }
text += "The number is " + i + "<br>";
}