Learn Introductory JavaScript by Building a Pyramid Generator - Step 41

Tell us what’s happening:

My for…of loop doesn’t run efficiently, it keeps tellig to delcare rows as a const but i have done that, could anyone advise me on what I’m doing wrong please.

Your code so far

const character = "#";
const count = 8;
const rows = [];

for (let i = 0; i < count; i = i + 1) {
  rows.push(character);
}

let result = ""


// User Editable Region

for(rows of rows ){
  
}

// User Editable Region


console.log(result);

Your browser information:

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

Challenge Information:

Learn Introductory JavaScript by Building a Pyramid Generator - Step 41

Hi there and welcome to our community!

The syntax example given in the challenge description:

for (const value of iterable) {

}

Your code:

Your iterable is rows but your variable should be row (not rows), and you need to declare it using the const keyword.

1 Like