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 trialhakop taturyan
245 PointsI cant seem to string past variables with a new one, i cant figure out whats wrong with the code.
let firstName;
let lastName;
let role = 'developer';
firstName += "Jack";
lastName += "Taturyan";
let msg = firstName + " " lastName ":" + role + ".";
2 Answers
Steven Parker
231,236 PointsThe code seems to be missing the +
symbols to join the literal strings to the lastName.
hakop taturyan
245 Pointsi fixed that but it still shows error
Steven Parker
231,236 PointsTry showing the code as you have it now.
hakop taturyan
245 PointsSteven Parker let firstName;
let lastName;
let role = 'developer';
firstName += "Jack";
lastName += "Taturyan";
let msg = firstName + " " lastName ":" + role ;
Steven Parker
231,236 PointsStill 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).
Steven Parker
231,236 PointsSteven Parker
231,236 PointsAlso, I don't think the challenge wants a period added at the end.