Continue
Part of the Fundamentals section of Coddy's JavaScript journey — lesson 41 of 77.
The continue statement stops the current iteration and continues to the next iteration. For example:
for (let i = 3; i < 9; i++) {
if (i == 5) {
continue;
}
console.log(i);
}The loop will iterate through all of the numbers. When it reaches i=5 it will skip that iteration and continue to the next one. The output is:
3
4
6
7
8Notice, number 5 is not in the output.
Challenge
BeginnerYou are given a code that prints the numbers from 1 to 20 (including).
Your task is to add if and continue statements so that only the even numbers will be printed (2, 4, 6, ...).
Cheat sheet
The continue statement stops the current iteration and continues to the next iteration:
for (let i = 3; i < 9; i++) {
if (i == 5) {
continue;
}
console.log(i);
}Output:
3
4
6
7
8Notice that 5 is skipped from the output.
Try it yourself
for (let i = 1; i <= 20; i++) {
console.log(i);
}This lesson includes a short quiz. Start the lesson to answer it and track your progress.
All lessons in Fundamentals
4Operators Part 2
Logical Operators Part 1Logical Operators Part 2Recap - Simple LogicLogical Operators Part 3Type Coercion7Bill Split Calculator
Welcome MessageCalculating The Tip And Total2Variables
NumbersStringBooleanNaming ConventionsEmpty VariablesRecap - Initialize VariablesConstants3Operators Part 1
Arithmetic OperatorsModulo OperatorArithmetic ShortcutsComparison OperatorsStrict vs Loose EqualityRecap - Simple Math6Basic IO
OutputOutput with VariablesType Conversion - Part 1Type Conversion - Part 2Recap - Till 120Recap - True or False