Learn Introductory JavaScript by Building a Pyramid Generator - Step 10

Tell us what’s happening:

I’ve looked for help and ways can i get help on this

Your code so far


// User Editable Region

let character = 'Hello';
console.log(character);
character = "World";
let secondCharacter;
secondCharater='Test';
let uninitialized;
uninitialized = "secondCharacter";
console.log(secondCharacter) ;


// User Editable Region

Your browser information:

User Agent is: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.0.0 Safari/537.36

Challenge Information:

Learn Introductory JavaScript by Building a Pyramid Generator - Step 10

Do not copy and paste the example code. It’s just an example, it’s not the answer. There was only one instruction to complete:

Assign the string "Test" to your secondCharacter variable

Just do that (you did it successfully) and add nothing else.

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