Learn Introductory JavaScript by Building a Pyramid Generator - Step 37

Tell us what’s happening:

I want to concatenate the for …of values with an empty string using the + inside the for… of body loop

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=""+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/124.0.0.0 Safari/537.36

Challenge Information:

Learn Introductory JavaScript by Building a Pyramid Generator - Step 37

I think you already did what you said, but this is not the challenge!

Challenge:

In your for...of loop, use the addition operator to concatenate the row value to the result value.

use your result instead of an empty string while concatenating

2 Likes

yep… the result is equal result plus row
the orientations are confusing but i get it when you comented. it helped

Still this does not work yet the console is right
for (const row of rows) {
result += row;
}
I really don’t know what I am doing wrong?

Hello Suzanne.
Can you create a separate topic of your own highlighting your problem then post it in the forum?

ok. But it is the same topic. I can’t seem to get it on this Step.

Forum rules. We have to go by them.

hey @Suzanne102

If you have a question about a specific challenge as it relates to your written code for that challenge and need some help, click the Ask for Help button located on the challenge (it looks like a question mark). This button only appears if you have tried to submit an answer at least three times.

The Ask for Help button will create a new topic with all code you have written and include a link to the challenge also. You will still be able to ask any questions in the post before submitting it to the forum.

Thank you.