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

q fue lo q eliminaste ?

The character function parameter.


If you have a question about a specific challenge as it relates to your written code for that challenge and need some help, click the Help button located on the challenge. This button only appears if you have tried to submit an answer at least three times.

The Help button will create a new topic with all code you have written and include a link to the challenge also. You will still be able to ask any questions in the post before submitting it to the forum.

Thank you.