Learn Introductory JavaScript by Building a Pyramid Generator - Step 7

Tell us what’s happening:

Hello there can someone explain whats wrong with this code

Your code so far


// User Editable Region

let character = 'Hello';
console.log(character);

character = "World";
console.log(character);

// 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/92.0.4515.131 Safari/537.36 Edg/92.0.902.67

Challenge Information:

Learn Introductory JavaScript by Building a Pyramid Generator - Step 7

Your solution works from my end. Please try one of the following steps to move forward.

Click on the “Restart Step” button and force a refresh of your page with CTRL + F5 then try to paste the code in again.

or - Try the step in incognito or private mode.

or - Disable any/all extensions that interface with the freeCodeCamp website (such as Dark Mode, Ad Blockers, or Spellcheckers), and set your browser zoom level to 100%. Both of these factors can cause tests to fail erroneously.

or - Ensure your browser is up-to-date or try a different browser.

I hope one of these will work for you.

Hey hi @hleo3300, you code is perfectly fine.

In your code:
The first console.log statement will output “Hello”
The second console.log statement will output “World”

My question is: “Are you trying to display “Hello World” ?”
If this is the case:

  1. String concatenation:

let character = “Hello”;
console.log(character); // “Hello”

character = character + " World";
console.log(character); // “Hello World”

  1. Template literals:

let character = “Hello”;
console.log(character); // “Hello”

character = ${character} World; // use the template literals(``)
console.log(character); // “Hello World”

I hope you understand this. If this is not your requirement, please clarify your question, and I would be happy to assist further. Thank you!

@mounich2856 it’s great you are wanting to help. Most people that ask for helpon the forum are working through the freecodecamp curriculum, the step they are asking for help with is linked in the post, you should take a look at it

Sorry I haven’t been replying I haven’t got notifications thank you everyone for your help really appreciate it I’ll use these steps soon and update you
Also I was sure my code was correct so thanks for the reassurance hope you all have great coding adventures.
Also next time I’ll try and be more specific in the question
Everyone’s help is appreciated

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