Answers for "js continue and break"

0

js continue and break

for (i = 0; i < 10; i++) {

    if (i === 3) { continue; }

    text += "The number is " + i + "<br>";

}
Posted by: Guest on April-27-2021

Code answers related to "Javascript"

Browse Popular Code Answers by Language