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

declare a message variable

I don't understand what I'm doing wrong

app.js
let firstName = ("ALiyah");
let lastName = ("Flowers");
let role = 'developer'; 
let message = firstName + 'ALiyah' + lastName + 'FLowers' + role + 'developer' ;

1 Answer

First declare your first and last name variables without parenthesis.

let firstName = "ALiyah";
let lastName = "Flowers";

for your message there are multiple ways of achieving this declaration.

First Way: With string concatenation you need to wrap any text that is not a variable in quotation marks. Your variables will not be wrapped in quotation marks and you need to pay attention to your spaces within this problem.

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

Second way: The way that I prefer is to use string templates using the backtick symbol to the left of the 1 on your keyboard and wrapping any variables with ${variableName}

let msg = `${firstName} ${lastName}: ${role}`