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 trialJuan Pablo Castrillon
863 PointsI keep getting this prompt: Bummer: Use the `.toUpperCase()` method to convert the `role` string to all upper-case.
I am using const developer = role.toUpperCase();
let firstName = 'JP';
let lastName = 'Castrillon';
let role = 'developer';
const developer = role.toUpperCase();
const msg = firstName + ' ' + lastName + ' : ' + role;
1 Answer
Jennifer Nordell
Treehouse TeacherHi there, Juan Pablo Castrillon! You're doing fantastic! Yes, you converted the role to upper case and then stored it in developer
. But then when you're displaying it, you're displaying role
which is still lower case.
So where you have:
const msg = firstName + ' ' + lastName + ' : ' + role;
You would need:
const msg = firstName + ' ' + lastName + ' : ' + developer;
Hope this helps!