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 trialSahmad Nakumbe
3,423 PointsAssign your first name to the variable firstName and your last name to lastName.
....
let = prompt'SahmadName';
let = prompt'NakumbeName';
let role = 'developer';
2 Answers
Steven Parker
231,248 PointsPaul 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
33,500 PointsThis is what I used to pass
let firstName = 'team';
let lastName = 'treehouse';
let role = 'developer';
let msg = firstName + ' ' + lastName + ": " + role.toUpperCase();
Paul Messmer
15,023 PointsPaul Messmer
15,023 Pointsprompt () 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.
This will store Paul in first name, Messmer in last name and developer in role.