What's wrong with this code. my code is not working! plzz help me with the solution

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

Your code so far


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

Challenge: Concatenating Strings with Plus Operator

Link to the challenge:

Hi there somchowdhury0013. I tried this and it worked:

const myStr = "This is the start. " + "This is the end."; // Change this line

Problem

  • Your missing a fullstop on your "This is the end." string unfortunately. Keep pushing though, it happens to the best of us. Feel free to ask any questions and I’ll do my best to get back to you.

Hi @somchowdhury0013
You are missing the fullstop . at the end.

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