Basic JavaScript - Concatenating Strings with Plus Operator

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

Your code so far

const myStr = "I come First. " + "I come Second.";

Your browser information:

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

Challenge: Basic JavaScript - Concatenating Strings with Plus Operator

Link to the challenge:

make sure you use exactly the provided text, capitalization is important!

EDIT:

you are actually using the wrong text altogether:

Build myStr from the strings This is the start. and This is the end. using the + operator. 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.