Learn Introductory JavaScript by Building a Pyramid Generator - Step 53

Tell us what’s happening:

My code have some problem, maybe missing something, but I don’t know what exactly. Can you chek my code and give me some information to learn, what exactly I miss.
Thank you.

Your code so far

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


// User Editable Region

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

// User Editable Region

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;
}

Your browser information:

User Agent is: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/125.0.0.0 Safari/537.36 Edg/125.0.0.0

Challenge Information:

Learn Introductory JavaScript by Building a Pyramid Generator - Step 53

Welcome to the forum @dguli2025

Here is a comparison of the original code and your code.

The code in blue is the original code, the code in red is your code.
The code in magenta is the overlap.

You appear to have modifed the padrow function.

Please reset the step to restore the orginal code.
Then return the variable mentioned in the instructions, without modifying any of the other code.

Happy coding

2 Likes

Thank you! It’s very helpfull. I’m gratefull for your support.

1 Like

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