Learn Introductory JavaScript by Building a Pyramid Generator - Step 86

Tell us what’s happening:

how i can do this to solve ?
while loop should increment the done variable.

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) {
  rows.length(rows <= count)
}

// 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 (X11; Linux x86_64) 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 86

Hi Samuel,

using the increment operator to increase the value of the done variable inside your loop.

Increment operator is: ++

You used the increment operator before with i++ in your for loop before in the previous steps, remember?

Now use it with done variable inside the body of the while loop.

good work! i have never wait this answer!thanks bro.

1 Like