Tell us what’s happening:
Hei guys i need some i don’t understand exactly the issue
Your code so far
const character = "#";
const count = 8;
const rows = [];
// User Editable Region
function padRow(rowNumber, rowCount) {
return " " + character.repeat(rowNumber) + " ";
}
// User Editable Region
for (let i = 0; i < count; i = i + 1) {
rows.push(padRow(i + 1, count));
}
let result = ""
for (const row of rows) {
result = result + "\n" + row;
}
console.log(result);
Your browser information:
User Agent is: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/129.0.0.0 Safari/537.36
Challenge Information:
Learn Introductory JavaScript by Building a Pyramid Generator - Step 69
what have you tried? what is confusing?
the question is asking for replacing the blanks with repeat rowNumber and rowCount , i don’t get it
it is not asking you to replace anything, rather, it wants you to add code to make the space character repeated.
So let’s say I had this code:
let myString = "this" + " " + "is";
If I want to make the space character repeated more than that 1 time there, I could do this:
let myString = "this" + " ".repeat(2) + "is";
And this would repeat the space twice.
If you want your test to pass you must add also the space at the end of the pyramid even if the users wont see it.
So your answer should look something like
function padRow(rowNumber, rowCount) {
return " ".repeat(something) + character.repeat(rowNumber * 2 - 1) + " ".repeat(thesamething);
}
Habitually you don’t need it because you can’t see the space at the end, but the test cases like that.