Learn Introductory JavaScript by Building a Pyramid Generator - Step 43

Tell us what’s happening:

I am struggling with this code pls can i have some help. I have used google to check it.

Your code so far

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


// User Editable Region

function repeatRows(rows) {
    for (let i = 0; i < rows.length; i++) {
        console.log(rows[i].repeat(i + 1));  
    }
}

// User Editable Region


let result = ""

for (const row of rows) {
  result = result + "\n" + row;
}

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/125.0.0.0 Safari/537.36

Challenge Information:

Learn Introductory JavaScript by Building a Pyramid Generator - Step 43

Please reset the code.
The step only wants you to modify the value being passed to the repeat function. Nothing else.

This topic was automatically closed 182 days after the last reply. New replies are no longer allowed.