Learn Introductory JavaScript by Building a Pyramid Generator - Step 87

Tell us what’s happening:

Tests failing even though I add the if condition

Step 87
The equality operator == is used to check if two values are equal. To compare two values, you’d use a statement like value == 8.

Add an if statement to your loop. The statement should check if done is equal to count using the equality operator.

while (continueLoop) {
if ( done == count) {

}
done++;
}

Your code so far

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

function padRow(rowNumber, rowCount) {
  return " ".repeat(rowCount - rowNumber) + character.repeat(2 * rowNumber - 1) + " ".repeat(rowCount - rowNumber);
}

// TODO: use a different type of loop
/*for (let i = 1; i <= count; i++) {
  rows.push(padRow(i, count));
}*/

let continueLoop = false;
let done = 0;


// User Editable Region

while (continueLoop) {
  if (done == count) {
    
  }
  done++;

}

// User Editable Region


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/537.36 (KHTML, like Gecko) Chrome/126.0.0.0 Safari/537.36

Challenge Information:

Learn Introductory JavaScript by Building a Pyramid Generator - Step 87

I will remove the done++ from my code and see what happen!

The location of the done++ is mislocated within your code! set it to it proper location and run your code

Thanks for your reply @hiekamara1 but still the same. I removed the done++ :frowning_face:

Seems like a bug in the test :question:

Ah I see!! That worked. Thank you so much:

Solution:
– removed –

1 Like

the if statement should come below the done++ in your while loop

1 Like

I am glad you figure it out. Have fun with some codes

2 Likes

It is great that you solved the challenge, but please don’t publish solutions here on the forum.
Thanks.

Apologies! Noted, won’t happen again

2 Likes