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

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

....

app.js
let = prompt'SahmadName';
let = prompt'NakumbeName';
let role = 'developer';

prompt () Will have a box pop up when the program is ran and then store what is typed into the variable. This callenege is asking you to store your name in each variable. But, you don't need the prompt method.

let firstName = "Paul"
let lastName = "Messmer"
let role = "developer"

This will store Paul in first name, Messmer in last name and developer in role.

2 Answers

Steven Parker
Steven Parker
229,644 Points

Paul is correct, but it's a "best practice" to include semicolons at the end of statements (even if not technically necessary):

let firstName = 'Sahmad';
let lastName = 'Nakumbe';
let role = 'developer';
Tom Nguyen
Tom Nguyen
33,499 Points

This is what I used to pass

app.js
let firstName = 'team';
let lastName = 'treehouse';
let role = 'developer';
let msg = firstName + ' ' + lastName + ": " + role.toUpperCase();