Learn Introductory JavaScript by Building a Pyramid Generator - Step 66

Tell us what’s happening:

I think its good to run but it kept showing call padRow in your .push()
help me out.

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 (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

You need to include the function parentheses when you call the function.

I have already used it.

You are missing the function parentheses here. You have the parentheses for the push method, but the function parentheses should be included also.

EXAMPLE:

// function definition
function myFunction() {
  console.log("this is my function")
}

//function call
myFunction()

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