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