Welcome to the Treehouse Community
The Treehouse Community is a meeting place for developers, designers, and programmers of all backgrounds and skill levels to get support. Collaborate here on code errors or bugs that you need feedback on, or asking for an extra set of eyes on your latest project. Join thousands of Treehouse students and alumni in the community today. (Note: Only Treehouse students can comment or ask questions, but non-students are welcome to browse our conversations.)
Looking to learn something new?
Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and a supportive community. Start your free trial today.

Michael Wolberg
1,560 PointstoUpperCase() ?
What exactly am I doing wrong? (I've also tried creating a new variable too) => let newRole = role.toUpperCase();
let firstName = "Michael";
let lastName = "Wolberg";
let role = 'developer';
let msg = firstName + " " + lastName + ":" + role.toUpperCase() + ".";
7 Answers

Michael Wolberg
1,560 PointsWhen I check it, it tells me that "Use the .toUpperCase()
method to convert the role
string to all upper-case."

Michael Wolberg
1,560 PointsIt's saying that I'm not doing it correctly.

Michael Wolberg
1,560 PointsNever mind, I figured it out. Thanks.

Tyler O'Donnell
241 Pointswhat did you do

Qamar Ramzan
8,602 Pointsi 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 .

Qamar Ramzan
8,602 Pointswhat was it?

Michael Wolberg
1,560 PointsHaha yea that's what I figured out too!

Michael Wolberg
1,560 PointsThat silly period! Thank you!
Qamar Ramzan
8,602 PointsQamar Ramzan
8,602 PointsHi Michael Its working fine. Whats the issue?