I cant figure out where is the problem ive done everything correct so far

Your code so far


const myStr = "This is the start. " + "This is the end. "; // Change this line
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/96.0.4664.110 Safari/537.36 Edg/96.0.1054.62

Challenge: Concatenating Strings with Plus Operator

Link to the challenge:

In order to pass the test, you have to make sure there is no extra white space at the end of the string.

remove white space from you last string at the end

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