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 trialEthan Gonzalez
4,984 Pointsim not exactly sure where I'm supposed to put the spacing? I tried between firstName and lastName varibles, but no luck.
let firstName = "Ethan";
let lastName = "Gonzalez";
let role = 'developer';
let msg = firstName + lastName + role;
2 Answers
ahmed suleman
8,173 Pointsso within the quotation marks there should be a space instead of this βwithout spaceβ it would be β with space"
lindsey howard
Full Stack JavaScript Techdegree Student 6,935 Pointsyou will need quotes for static strings to insert spacing and/or punctuation between the terms
an example would be....
let dogName = 'bella';
let breed = 'lab mix';
let x = dogName + " " + ":" breed;
Ethan Gonzalez
4,984 PointsEthan Gonzalez
4,984 Pointsevery time i submit this answer I get an error that I should: Make sure you're adding one space (' ') between
firstName
andlastName
.