Welcome to the Treehouse Community

Want to collaborate on code errors? Have bugs you need feedback on? Looking for an extra set of eyes on your latest project? Get support with fellow developers, designers, and programmers of all backgrounds and skill levels here with the Treehouse Community! While you're at it, check out some resources Treehouse students have shared here.

Looking to learn something new?

Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and join thousands of Treehouse students and alumni in the community today.

Start your free trial

JavaScript JavaScript Basics Working with Strings Combine and Manipulate Strings

I cant seem to string past variables with a new one, i cant figure out whats wrong with the code.

app.js
let firstName;
let lastName;
let role = 'developer';
firstName += "Jack";
lastName += "Taturyan";
let msg = firstName + " " lastName ":" + role + ".";

2 Answers

Steven Parker
Steven Parker
229,732 Points

The code seems to be missing the + symbols to join the literal strings to the lastName.

Steven Parker
Steven Parker
229,732 Points

Also, I don't think the challenge wants a period added at the end.

i fixed that but it still shows error

Steven Parker
Steven Parker
229,732 Points

Try showing the code as you have it now.

Steven Parker let firstName;

let lastName;

let role = 'developer';

firstName += "Jack";

lastName += "Taturyan";

let msg = firstName + " " lastName ":" + role ;

Steven Parker
Steven Parker
229,732 Points

Still missing + signs before and after lastName.

Also, when posting code, be sure to use Markdown formatting to preserve the code's appearance (like in the question itself).