Javascript For Loop Continue

The continue statement is a control statement that is used to skip the following statement in the body of the loop and continue with the next iteration of the loop. Syntax: for( initialization; condition; statement){ //Block of statements if(condition){ continue; } } Where: initialization statement: is used to initialize the loop variable. boolean expression: is … Read more

Javascript For Loop

The for loop repeatedly executes a block of statements until a particular condition is true. Syntax: for(initialization; condition; statement){ //Block of statements } 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 … Read more