Learn Introductory JavaScript by Building a Pyramid Generator - Step 57

Tell us what’s happening:

I don’t know what I’m doing wrong. I updated the function and concatenated the 2 variables, I don’t find the problem. It’s probably something very silly!

Your code so far

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


// User Editable Region


function padRow(character, name) {
  return (character + name);
}


// 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 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/17.5 Safari/605.1.15

Challenge Information:

Learn Introductory JavaScript by Building a Pyramid Generator - Step 57

I’ll reply to myself because I just saw the problem lol. Needed to delete something ahaha, such a silly problem but I was about to cry lol

1 Like