Learn Introductory JavaScript by Building a Pyramid Generator - Step 43

Tell us what’s happening:

I went through all the forum that are posted for step 41 JavaScript, I google and watch youtube videos and my code wont pass

for ( const row of rows) {
result = result + “\n” + row;
}

Your code so far

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

for (let i = 0; i < count; i = i + 1) {
  rows.push(i);
}

let result = ""


// User Editable Region

for (const row of rows) {
  result = result + "\n" + row;
}

// User Editable Region


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/131.0.0.0 Safari/537.36

Challenge Information:

Learn Introductory JavaScript by Building a Pyramid Generator - Step 43

a new line after the result and row values.

Is your new line character after both result and row?

Yes and it does make the change from horizantal to vertical, but it does’t pass

your newline character is not after both result and row, it’s only after result

If you mean like this? it still not letting me pass

Welcome to the forum @jguevara0513

Keep the new line character at the end of the code, delete the first one.

Happy coding

1 Like

Thank you!! it worked.

1 Like