Skip to content

Mastering JavaScript Loops: A Comprehensive Guide

Loops are essential constructs in programming that allow you to execute a block of code repeatedly. In this guide, we’ll explore various types of loops in JavaScript, from basic to advanced concepts.

1. Classical for Loop

The for loop is one of the most commonly used loops in JavaScript. It’s ideal when you know how many times you want to execute a block of code.

// Syntax:
for (initialization; condition; increment / decrement) {
// code to be executed
}
// Example:
for (let i = 0; i < 5; i++) {
console.log(i);
}
// Output: 0 1 2 3 4

2. Nested for Loop

Nested loops are useful when working with multi-dimensional arrays or when you need to perform operations on each element of a matrix.

// Example:
const arr = [
[1, 2, 3],
[4, 5, 6],
[7, 8, 9],
];
for (let i = 0; i < arr.length; i++) {
// outer loop
for (let j = 0; j < arr[i].length; j++) {
// inner loop
console.log(arr[i][j]);
}
}
// Output: 1 2 3 4 5 6 7 8 9

3. Break and Continue Keywords

The break and continue statements allow you to control the flow of your loops.

// Using break
for (let i = 0; i < 10; i++) {
if (i === 5) {
break; // break the execution of loop when i equal to 5
}
console.log(i);
}
// Output: 0 1 2 3 4
// Using continue
for (let i = 0; i < 10; i++) {
if (i === 5) {
continue; // skip the value 5 and continue the execution of loop when i equal to 5
}
console.log(i);
}
// Output: 0 1 2 3 4 6 7 8 9

4. While Loop

The while loop executes a block of code as long as a specified condition is true.

// Syntax
initialization;
while (condition) {
// code to be executed
increment / decrement;
}
// Example:
let count = 0;
while (count < 5) {
console.log("Current Count: " + count);
count++;
}
/*
Output:
Current Count: 0
Current Count: 1
Current Count: 2
Current Count: 3
Current Count: 4
*/

5. Do-While Loop

The do-while loop is similar to the while loop, but it always executes the code block at least once before checking the condition.

// Syntax
initialization;
do {
// code to be executed
increment / decrement;
} while (condition);
// Example:
let count = 0;
do {
console.log("Current Count: " + count);
count++;
} while (count < 0);
// Output: Current Count: 0

6. Higher-Order Loops

JavaScript provides several higher-order loops for iterating over arrays and objects.

for…of Loop

The for...of loop is used to iterate over iterable objects like arrays, strings, and maps.

// Iterating over an array
const arr = [1, 2, 3, 4, 5];
for (let value of arr) {
console.log(value);
}
// Output: 1 2 3 4 5
// Iterating over a string
const str = "hello";
for (let char of str) {
console.log(char);
}
// Output: h e l l o
// Iterating over a map
const map = new Map([
["key1", "value1"],
["key2", "value2"],
["key3", "value3"],
]);
for (let [key, value] of map) {
console.log(`${key}: ${value}`);
}
// Output:
// key1: value1
// key2: value2
// key3: value3

for…in Loop

The for...in loop is used to iterate over the properties of an object.

// Iterating over an object's properties
const person = {
name: "Samar Sarkar",
age: 30,
country: "India",
};
for (const prop in person) {
console.log(`${prop}: ${person[prop]}`);
}
// Output:
// name: Samar Sarkar
// age: 30
// country: India
// Iterating over an array (not recommended, use for...of instead)
const arr = [1, 2, 3, 4, 5];
for (let index in arr) {
console.log(`Index: ${index} -> Value: ${arr[index]}`);
}
// Output:
// Index: 0 -> Value: 1
// Index: 1 -> Value: 2
// Index: 2 -> Value: 3
// Index: 3 -> Value: 4
// Index: 4 -> Value: 5

forEach Method

The forEach method is a higher-order function that executes a provided function once for each array element.

users = [
{ userId: 1, firstName: "umesh", gender: "male" },
{ userId: 2, firstName: "rishab", gender: "male" },
{ userId: 3, firstName: "rohit", gender: "male" },
{ userId: 4, firstName: "aman", gender: "male" },
];
users.forEach((user) => {
console.log(user.firstName);
});
// Output:
// umesh
// rishab
// rohit
// aman

Conclusion

Understanding these loop constructs is crucial for effective JavaScript programming. Each type of loop has its own use cases:

  • Use for loops when you know the number of iterations in advance.
  • Use while loops when you want to continue until a condition is met.
  • Use do-while loops when you need to execute the code at least once.
  • Use for...of for iterating over array values.
  • Use for...in for iterating over object properties.
  • Use forEach for a more functional approach to array iteration.

Remember to choose the appropriate loop for your specific use case to write clean, efficient, and readable code. Practice using these loops in various scenarios to become proficient in controlling the flow of your JavaScript applications.

Happy Learning!