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

payton johnson
payton johnson
2,971 Points

Where to fit "role" in to command.

Title basically explains dilemma.

app.js
let firstName = "payton" ;
let lastName = "johnson" ;
let role = 'developer';
const shout = .toUpperCase();
const msg = firstName + ' ' + lastName + ":" + ' ' + role

payton johnson , Just checking to make sure you've figured it out yet ? If not here's another hint , you need to take the "role" variable and place it within the "shout" variable. Don't give up , you got this!

1 Answer

Hey payton johnson ,

Everything is looking good but currently your ".toUpperCase" is uppercasing nothing. It's just a method stored in a variable. So , your code is very close to the correct answer already.