This article is part of my Control Flow in JavaScript Series.
In this article, we will be discussing loops.
Why do we need loops?
Very often in code, you will find yourself in the situation where you need to perform a particular task or tasks repeatedly.
Let's say that you want to print to the console the numbers 1 though 10. One way to do that would be the following:
console.log(1);
console.log(2);
console.log(3);
console.log(4);
console.log(5);
console.log(6);
console.log(7);
console.log(8);
console.log(9);
console.log(10);
Ok, that's only 10 lines of code, that's not that bad you may say. What if instead of printing the numbers 1 through 10, you were asked to print the number 1 through 1000! Do you really want to type out 1000 console.log()
statements? Instead of writing 1000 lines, we can implement the following loop for example:
// Print out the numbers 1 through 1000 to the console
for (let i = 0; i < 1000; i++) {
console.log(i);
}
Loops enable a program to repeat a piece of code for a specified (or unspecified) amount of time.
Loop Basics
All 3 of the standard loops (for, while, and do-while) need 3 things to run correctly:
- An iterator / initial condition.
- A condition to evaluate to true or false to determine whether or not the loop should run. Typically, this condition is associated with the iterator / initial condition.
- A way to increment the iterator / initial condition.
for loops:
The for
loop is the most often used loop out of all 3 of the standard loops.
Here is the syntax:
for (iterator; condition; incrementIterator) {
// Code in for block goes here
// This code will only execute if the condition
// evaluates to true
}
Let's look at an example of a for loop and step though what is happening:
// Initialize an array
let myArray = ["a", "b", "c", "d", "e"];
// Loop through the array and print each element
for (let i = 0; i < myArray.length; i++) {
console.log(myArray[i]);
}
// The above loop prints out
// a
// b
// c
// d
// e
// This console.log() will run after the for loop has
// completed printing out all of the elements in the
// array
console.log("For loop ended");
- When the for loop is run for the 1st time, the iterator is set to 0.
- The condition is then checked and since 0 is less than myArray.length (5), the condition evaluates to
true
. - Since the condition evaluated to
true
, then the code inside the for loop is run once and the first element in the array is printed to the console. - After the code inside the loop has executed once, the iterator is incremented from 0 to 1 by
i++
. - After this, the condition is checked again, since 1 is less than the length of the array, the code inside the for loop is run once again and the 2nd value of the array is printed to the console.
- After the code runs a second time, the iterator is again increased by 1 so now its value is 2.
- The loop of checking the condition, running the code and incrementing the iterator is repeated until the iterator is incremented to the length of the array which is 5. At this point, the condition is no longer true since 5 < 5 is
false
. This results in the for loop terminating and moving to the next set of code which isconsole.log("For loop ended")
;
while loops:
Unlike for loops, while loops have their iterator initialized outside of the while loop declaration. Also different from the for loop, the incrementing of the iterator does not happen automatically, instead it needs to be specifically declared within the while loop code block, otherwise, the iterator will not increment and the while loop will keep looping forever. This is called an infinite loop condition
. This should be avoided as once you get into an infinite loop, you cannot break out of it from within the code, you will have to manually close or quit out of your program.
Here is the syntax for a while loop:
let iterator = someValue;
while (condition) {
// Code goes here
// If we don't increment the iterator here, our
// loop will probably keep going to infinity
iterator++;
}
NOTE: Technically, you don't need an iterator in order to use a while (or a do...while) loop. However, if you don't use an iterator, you need to have some other way of ensuring that the condition in your while loop eventually evaluates to false, otherwise you will end up with an infinite loop. Instead of using an iterator, you can have an if condition inside your loop that checks if a flag is a certain value and if it is, change the condition in the while loop to evaluate to false.
// Initialize variable to be printed (and decremented) in loop
let n = 5;
// Initialize flag to be used in while loop evaluation
let flag = true;
// Loop while flag evaluates to true
while (flag) {
// Log values to console
console.log("Flag is true");
console.log(n);
n--; // Decrement n
// Condition that flips flag to false and ends
// execution of while loop
if (n < -5) {
console.log("Flag is false");
flag = false;
}
}
/* CODE OUTPUT:
Flag is true
5
Flag is true
4
Flag is true
3
Flag is true
2
Flag is true
1
Flag is true
0
Flag is true
-1
Flag is true
-2
Flag is true
-3
Flag is true
-4
Flag is true
-5
Flag is false
*/
Now let's see an example where we loop through an array and print all it's values:
// Initialize an array
let myArray = ["a", "b", "c", "d", "e"];
// Set an iterator with an initial value
// for the while loop
let i = 0;
// Loop through the array and print each element
while (i < myArray.length) {
// Log the current element in the array to the console
console.log(myArray[i]);
// Increment the iterator
i++;
}
// The above loop prints out
// a
// b
// c
// d
// e
// This console.log() will run after the loop has
// completed printing out all of the elements in the
// array
console.log("while loop ended");
- In the example above, we initialize the iterator outside of the while loop and set it's value to 0.
- The while loop checks the condition which is
i < myArray.length
and sincei
is currently 0, the loop will run and print the 1st element in the array as well as increment the iterator which is declared outside the loop. - This is then repeated with the condition of the while loop being checked before the code inside runs.
- Once the iterator inside the while loop is incremented to a value 5 which is the same as the length of the array,the condition on the while loop will no longer be
true
and the while loop will exit and move to the next set of instructions which is toconsole.log("while loop ended")
.
do...while loops:
Do while loops are very similar to while loops except the checking of the condition happens after the contents inside the loop are executed. This ensures that even if the condition inside the while loop will evaluate to false
right away, the contents inside the loop will run once before the loop exits due to the condition evaluating to false
.
Syntax of a do...while
loop:
// Initialize an iterator which will be used to control
// how many times the loop will run.
let iterator = someValue;
// Run the code inside the do code block
do {
// Code goes here
// If we don't increment the iterator here, our
// loop will probably keep going to infinity
iterator++;
// check the condition evaluates to true
// before going back and running the code again
// inside the do loop
} while (condition);
Example of do...while loop:
// Initialize an array
let myArray = ["a", "b", "c", "d", "e"];
// Set an iterator with an initial value
// for the do...while loop
let i = 0;
// Loop through the array and print each element
do {
// Log the current element in the array to the console
console.log(myArray[i]);
// Increment the iterator
i++;
} while (i < myArray.length);
// The above loop prints out
// a
// b
// c
// d
// e
// This console.log() will run after the loop has
// completed printing out all of the elements in the
// array
console.log("do...while loop ended");
- Here, the iterator is also declared outside of the loop and initialized to a starting value of 0.
- The code inside the
do...while
loop is run and the iterator is incremented by 1. - The condition in the while loop is then checked. Since 1 is less than the length of the array, the code in the do portion of the loop is run once again.
- This cycle of checking the condition and running the code inside the do block is repeated until the condition inside of the while loop is no longer true. At this point, the
do...while
loop exits and the next section of code is run which is theconsole.log("do...while loop ended")
.
Skipping Iterations and Escaping Out of Loops:
break:
The break statement in JavaScript is used inside a loop to prematurely break out of the loop. These are typically found in if
statements and used to aid in the control of the loop.
A particularly useful use for the break
statement is to break out of an infinite while loop.
If a break
statement is found inside a nested (loop within a loop) loop, then the break
statement only forces JavaScript to break out of the inner-most loop containing the break statement.
Examples of using the break statement:
for (let i = 0; i < 10; i++) {
console.log(i);
if (i === 3) {
break;
}
}
console.log("printing outside for loop");
/*
Output of code above
0
1
2
3
printing outside for loop
*/
for (let i = 0; i < 5; i++) {
console.log("Printing i:", i);
for (let j = 0; j < 5; j++) {
if (j > 3) {
break;
}
console.log("Printing j:", j);
}
}
/*
Output of Nested For Loop:
Printing i: 0
Printing j: 0
Printing j: 1
Printing j: 2
Printing j: 3
Printing i: 1
Printing j: 0
Printing j: 1
Printing j: 2
Printing j: 3
Printing i: 2
Printing j: 0
Printing j: 1
Printing j: 2
Printing j: 3
Printing i: 3
Printing j: 0
Printing j: 1
Printing j: 2
Printing j: 3
Printing i: 4
Printing j: 0
Printing j: 1
Printing j: 2
Printing j: 3
*/
// You can also use the break statement to break out of an infinite while loop
let counter = 0;
while (true) {
console.log(counter);
counter++;
if (counter > 5) {
break;
}
}
/*
Output of while loop:
0
1
2
3
4
5
*/
continue:
The continue
statement works similarly to to the break
statement except that instead of completely breaking out of the loop containing the continue
statement, continue
just forces the current loop to start its next iteration, while skipping any additional statements below the continue
statement.
More specifically, when the continue
statement is executed, there are 2 possibilities that occur depending on the type of loop the statement is located in:
- For a
while
loop,continue
forces the loop to proceed with its next iteration. - For a
for
loop,continue
forces the loop to update the current iterator and then proceed with the next iteration.
Also similar to the break
statement, continue
only works on the inner-most loop which contains the continue
statement.
for (let i = 0; i < 5; i++) {
if (i === 3) {
continue;
}
console.log(i);
}
console.log("printing outside for loop");
/*
Notice how the value of 3 is not printed. This is because
the if statement triggers and the continue causes
the console.log(i) to get skipped and the next iteration
proceeds.
Output of code above:
0
1
2
4
printing outside for loop
*/
for (let i = 0; i < 5; i++) {
console.log("Printing i:", i);
for (let j = 0; j < 5; j++) {
if (j === 2) {
continue;
}
console.log("Printing j:", j);
}
}
/*
NOTE: Notice how the number 2 is not being printed
inside the nested for loop. This is because of the
continue statement.
Output of Nested For Loop:
Printing i: 0
Printing j: 0
Printing j: 1
Printing j: 3
Printing j: 4
Printing i: 1
Printing j: 0
Printing j: 1
Printing j: 3
Printing j: 4
Printing i: 2
Printing j: 0
Printing j: 1
Printing j: 3
Printing j: 4
Printing i: 3
Printing j: 0
Printing j: 1
Printing j: 3
Printing j: 4
Printing i: 4
Printing j: 0
Printing j: 1
Printing j: 3
Printing j: 4
*/
Looping through Iterables and Objects in JS with for...of and for...in loops:
for...of loops:
for...of
loops are a shorthand way to write a for loop to iterate over all elements in an iterable object. strings
, arrays
, maps
and sets
are examples of iterable objects in JavaScript. Elements in an array-like object such as a NodeList
can also be accessed using for...of
.
When using a for...of
loop, the iterator which is declared inside the conditional statement of the loop takes on the value of the current element in the iterable being evaluated.
let myArray = ["a", "b", "c", "d", "e"];
for (let letter of myArray) {
console.log(letter);
}
/*
Output from for...of array
a
b
c
d
e
*/
for...in loops:
for...in
loops iterate through properties in an object, specifically their keys.
let myObject = {
firstName: "John",
lastName: "Doe",
age: 50,
};
for (let property in myObject) {
console.log(`${property}: ${myObject[property]}`);
}
/*
Output from the for...in loop
firstName: John
lastName: Doe
age: 50
*/
NOTE: While it is possible to use the for...in
loop to iterate over an array, please only use for...in
loops to iterate over object properties. for...in
loops will not necessarily iterate over the array in a specific order.
Top comments (0)