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

toUpperCase() ?

What exactly am I doing wrong? (I've also tried creating a new variable too) => let newRole = role.toUpperCase();

app.js
let firstName = "Michael";
let lastName = "Wolberg";
let role = 'developer';
let msg = firstName + " " + lastName + ":" + role.toUpperCase() + ".";
Qamar Ramzan
Qamar Ramzan
9,786 Points

Hi Michael Its working fine. Whats the issue?

7 Answers

When I check it, it tells me that "Use the .toUpperCase() method to convert the role string to all upper-case."

It's saying that I'm not doing it correctly.

Never mind, I figured it out. Thanks.

what did you do

Qamar Ramzan
Qamar Ramzan
9,786 Points

i tested your code in my browser and it worked ok. I then did the challenge via teamtreehouse. The only thing i did different is

let msg = firstName + " " + lastName + ":" + role.toUpperCase();

and it worked for me .

Haha yea that's what I figured out too!

That silly period! Thank you!