Learn Introductory JavaScript by Building a Pyramid Generator - Step 36

Tell us what’s happening:

Hello guys
who can help me with step 36 of jv script?
where should i add 8 ?

Your code so far

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


// User Editable Region

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

// User Editable Region

Your browser information:

User Agent is: Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:127.0) Gecko/20100101 Firefox/127.0

Challenge Information:

Learn Introductory JavaScript by Building a Pyramid Generator - Step 36

You aren’t asked to add 8 anywhere.

You need to print the value of the i iterator by adding a console log for i in the curly brackets.

This topic was automatically closed 182 days after the last reply. New replies are no longer allowed.