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

How to answer… Assign your first name to the variable firstName and your last name to lastName.

My answer was ‘fistName’; & same for last name … i also used my real name ‘Quanesha’; but I’m missing something i don’t know what

app.js
let firstName;'firstName';
let lastName;'lastName';
let role = 'developer';

2 Answers

Variable assignment uses the equal sign, so:

let firstName = 'Quanesha';

Do the same thing for the lastName variable.

Thank you so much your response really helped me!!!

Purabi Panigrahy
Purabi Panigrahy
7,946 Points

Use "=" operator for assignment

let firstName = 'Quanesha' ;

You can also use double quotes

let firstName = "Quanesha" ;