Business
Jobs
  • About Us
  • Solutions
    • Job Postings
      Post your job and receive qualified candidates in 48h.
    • Candidate Assessments
      500+ technical and psychological tests, plus anti-fraud.
    • Headhunting
      Tailor-made executive search from start to finish.
    • Payroll + EOR
      Payroll dispersal and EOR across 15+ LATAM countries.
  • Pricing
  • Jobs

0

100
Views
Problems in understanding javascript nested for loops

I try to understand nested for loops in javascript but it's very confusing.

I have this code and I can't understand how it works:

let n = 5;
for (let i = 0; i < n; i++) {
    for (let j = 0; j < i; j++) {
    console.log(j);
}}

In console I have : 0 1 0 1 2 0 1 2 3

And I'm trying to figure out which loop represent each number.

about 4 years ago · Juan Pablo Isaza
1 answers
Answer question

0

Run this code:

let n = 5;
let str = '';
for (let i = 0; i < n; i++) {
    for (let j = 0; j < i; j++)
        str += j;
   
   console.log("Outer: "+i+" Inner: "+str);
   str = '';
}

Output is:

Outer: 0 Inner: 
Outer: 1 Inner: 0
Outer: 2 Inner: 01
Outer: 3 Inner: 012
Outer: 4 Inner: 0123

As you can see, in the output above, inner loop (the one with variable j) doesn't run, because if you replace the variables with numbers it would be 0 < 0 (i < 0), which isn't true.

The best way for you to understand how nested loops work is to write each step and variable values on the paper, like so:

n = 5

STEP 1:

  • i = 0
  • i < n (0 < 5) TRUE
    • j = 0
    • j < i (0 < 0) FALSE inner loop doesn't execute
  • OUTPUT: "Outer: 0 Inner:"
  • str = ''

STEP 2:

  • i = 1
  • i < n (1 < 5) TRUE
    • j = 0
    • j < i (0 < 1) TRUE
    • str = 0
    • j = 1 (j++)
    • j < i (1 < 1) FALSE
  • OUTPUT: "Outer: 1 Inner: 0"
  • str = ''

And so on... Keep repeating this until the argument in the outer loop is false (i < n).

You must remember, in for loop the sequence of orders executed:

for(let i = 0; i < 5; i++) {
  console.log('It works');
}
  1. let i = 0; (this executes only once)

  2. i < 5 (if true run 3 and 4)

  3. run the code in loop

  4. i ++

  5. i < 5 (if true run 6 and 7)

  6. run the code in loop

  7. i++

etc.

about 4 years ago · Juan Pablo Isaza Report
Answer question
Find remote jobs

Discover the new way to find a job!

Top jobs
Top job categories
Business
Post vacancy Pricing Sales
Legal
Terms and conditions Privacy policy
© 2026 PeakU Inc. All Rights Reserved.
Andres GPT
Show me some job opportunities
There's an error!