Learn Introductory JavaScript by Building a Pyramid Generator - Step 36

Tell us what’s happening:

Used below loops

for(let i=0;i<3;i=i+1) {

console.log(i);
}

for(let i=0;i<3;i=i+1) {

console.log(i);
}

still my code not passing.

Step no 36

Your code so far


// User Editable Region


for(let i=0;i<3;i=i+1) {
  
  console.log(i);
}

// User Editable Region

Your browser information:

User Agent is: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/129.0.0.0 Safari/537.36

Challenge Information:

Learn Introductory JavaScript by Building a Pyramid Generator - Step 36

Hi there,

Don’t change the condition of the for loop.
You shoud click on Reset button and try again.