Basic JavaScript - Concatenating Strings with Plus Operator

Tell us what’s happening:
Describe your issue in detail here.

Your code so far

const myStr="This is Start. "+"This is the end."; // Change this line
console.log(myStr);

Your browser information:

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

Challenge: Basic JavaScript - Concatenating Strings with Plus Operator

Link to the challenge:

First of all, welcome to the forum.

Next, please ask questions. Not only is it polite, it is also good practice - being able to talk about code and problems with code is an important skill for a developer.

As to your code, your JS is correct, but you didn’t copy one of the strings correctly. Pay very close attention. When I fix that, your code passes for me.

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