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

I'm not able to get this final variable done, please give me a hand on this?

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

let botMan1 = "Carlos";
let botMan2 = "Salgado";
let msg = "Carlos Salgado: developer";

1 Answer

Ignacio Rocha
Ignacio Rocha
7,462 Points

The idea of the last part of the challenge is to create a variable called msg that print: Carlos Salgado: developer but using the variable created before and then upper case the role.