Learn Introductory JavaScript by Building a Pyramid Generator - Step 66

Tell us what’s happening:

I cannot seem to figure out how to call the padRow function. Can someone give me a hint on how to do it? much appreciated.

-Love: Radical Rodney

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) {
  row.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 (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 66

Any function in JavaScript is called by writing the name and adding two parenthesis next to it. () The arguments, if any, are supposed to be written inside the parenthesis. Look at how the repeat function is called as an example.

1 Like