Basic JavaScript - Concatenating Strings with the Plus Equals Operator

Not sure where I am mistaken??

Your code so far

var myStr= "This is the first sentence. ";
myStr += "This is the second sentence. ";

console.log(myStr);

Your browser information:

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

Challenge: Basic JavaScript - Concatenating Strings with the Plus Equals Operator

Link to the challenge:

I guess you should remove the space after the dot of the second string, so as the space is only between string 1 and 2. They said:

… be sure to include a space between the two strings.

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