Learn Introductory JavaScript by Building a Pyramid Generator - Step 51

Tell us what’s happening:

I’ve tried to put my code inside and outside the function but nothing seemed to work. I don’t know what is wrong with my code unless I’m just dumb

Your code so far

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


// User Editable Region

function padRow(name) {
  return character + name;
  const test = padRow("Testing");
}

// User Editable Region

const call = padRow("CamperChan");
console.log(call);


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

let result = ""

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

console.log(result);

Your browser information:

User Agent is: Mozilla/5.0 (X11; CrOS x86_64 14541.0.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/123.0.0.0 Safari/537.36

Challenge Information:

Learn Introductory JavaScript by Building a Pyramid Generator - Step 51

Hello

The lesson asks you to initialize the test variable with the “Testing” string, in your case, you called the padRow function and used “Testing” as an argument, which is not what the lesson requires.

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