Learn Introductory JavaScript by Building a Pyramid Generator - Step 65

Tell us what’s happening:

Hi, I’m trying to call the padRow function and doing what it says in the instructions but it’s not working for me, what am I doing wrong? Thanks!

Your code so far

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

function padRow(rowNumber, rowCount) {
  return character.repeat(rowNumber);
}



// User Editable Region

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


// 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 (Macintosh; Intel Mac OS X 10_15_7) 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 65

Hey!
That is not how we call a function.

Hello,

use:
code removed by moderator

functions have the “()” don’t forget to add them!.

It happened to me too a few times haha.

1 Like

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