0
so if you put continue in your if statement, itll skip that value and keep going? example
if (x==30){ continue; } //part of a code not the whole thing
3 Réponses
+ 2
continue and break statements should be in any loop or switch.
if continue gets executed then rest of loop(statements which are after continue) will not be executed, loop will goto next iteration
if break gets executed then it will break complete loop. that loop won't execute further
0
ok thanks
0
if the statement is false then it will skip the current statement and goto the next statement