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

Ethan Gonzalez
Ethan Gonzalez
4,984 Points

im not exactly sure where I'm supposed to put the spacing? I tried between firstName and lastName varibles, but no luck.

app.js
let firstName = "Ethan";
let lastName = "Gonzalez";
let role = 'developer';
let msg = firstName + lastName + role;
Ethan Gonzalez
Ethan Gonzalez
4,984 Points

every time i submit this answer I get an error that I should: Make sure you're adding one space (' ') between firstName and lastName.

2 Answers

so within the quotation marks there should be a space instead of this ‘without space’ it would be “ with space"

you 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;