Example of Nested For Loop in JavaScript

To use a nested for loop in JavaScript, place one loop inside another loop. This is useful for iterating over multidimensional arrays.

let matrix = [
    [1, 2, 3],
    [4, 5, 6],
    [7, 8, 9]
];

for (let i = 0; i < matrix.length; i++) {
    for (let j = 0; j < matrix[i].length; j++) {
        console.log(matrix[i][j]);
    }
}

Nested for loops in JavaScript are powerful constructs that allow you to iterate over multidimensional arrays or perform repeated operations within repeated operations. This guide will cover the concept and use cases of nested for loops, along with detailed explanations and code examples.

Nested for loops are a fundamental concept in programming, enabling you to perform repetitive tasks within repetitive tasks. They are particularly useful for working with multidimensional arrays and complex data structures.

Basic Nested For Loop

A basic nested for loop involves placing one for loop inside another. This can be useful for iterating over elements in a two-dimensional structure, such as a grid or table.

Example 1: Basic Nested For Loop

for (let i = 0; i < 3; i++) {
    for (let j = 0; j < 3; j++) {
        console.log(`i: ${i}, j: ${j}`);
    }
}

Explanation:

  • The outer loop runs three times with the variable i ranging from 0 to 2.
  • The inner loop runs three times for each iteration of the outer loop with the variable j ranging from 0 to 2.
  • The console.log statement prints the values of i and j during each iteration.

Nested For Loop with Multidimensional Arrays

Nested for loops are particularly useful for iterating over multidimensional arrays, such as a matrix or grid.

Example 2: Nested For Loop with Multidimensional Arrays

let matrix = [
    [1, 2, 3],
    [4, 5, 6],
    [7, 8, 9]
];

for (let i = 0; i < matrix.length; i++) {
    for (let j = 0; j < matrix[i].length; j++) {
        console.log(matrix[i][j]);
    }
}

Explanation:

  • The outer loop iterates over the rows of the matrix.
  • The inner loop iterates over the columns of the matrix.
  • The console.log statement prints each element of the matrix.

Using Nested For Loops for Matrix Multiplication

Nested for loops can also be used for more complex operations, such as matrix multiplication.

Example 3: Matrix Multiplication

let matrixA = [
    [1, 2],
    [3, 4]
];
let matrixB = [
    [5, 6],
    [7, 8]
];
let result = [
    [0, 0],
    [0, 0]
];

for (let i = 0; i < matrixA.length; i++) {
    for (let j = 0; j < matrixB[0].length; j++) {
        for (let k = 0; k < matrixA[0].length; k++) {
            result[i][j] += matrixA[i][k] * matrixB[k][j];
        }
    }
}

console.log(result); // Output: [[19, 22], [43, 50]]

Explanation:

  • Three nested loops are used to perform matrix multiplication.
  • The outer loop iterates over the rows of matrixA.
  • The middle loop iterates over the columns of matrixB.
  • The innermost loop performs the multiplication and addition to compute each element of the result matrix.

Optimizing Nested For Loops

Nested for loops can sometimes be inefficient, especially with large datasets. Optimizations might include breaking out of loops early or using more efficient algorithms.

Example 4: Early Exit Optimization

let found = false;
let matrix = [
    [1, 2, 3],
    [4, 5, 6],
    [7, 8, 9]
];

for (let i = 0; i < matrix.length; i++) {
    for (let j = 0; j < matrix[i].length; j++) {
        if (matrix[i][j] === 5) {
            found = true;
            break;
        }
    }
    if (found) break;
}

console.log(found); // Output: true

Explanation:

  • The found variable is used to indicate when the desired element is found.
  • The break statement exits the inner loop and, if necessary, the outer loop early to avoid unnecessary iterations.

Conclusion

Nested for loops in JavaScript are a versatile tool for handling complex data structures and repetitive tasks. By understanding how to use them effectively, you can perform operations on multidimensional arrays, matrices, and more. Optimizing nested loops can improve the performance of your code, making it more efficient and maintainable.

By mastering nested for loops, you can handle a wide range of programming challenges, enhancing your ability to write robust and efficient JavaScript code.

Leave a Comment

Your email address will not be published. Required fields are marked *

Scroll to Top