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 trialMichael Wolberg
2,764 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
2,764 PointsWhen I check it, it tells me that "Use the .toUpperCase()
method to convert the role
string to all upper-case."
Michael Wolberg
2,764 PointsIt's saying that I'm not doing it correctly.
Michael Wolberg
2,764 PointsNever mind, I figured it out. Thanks.
Tyler O'Donnell
525 Pointswhat did you do
Qamar Ramzan
10,377 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
10,377 Pointswhat was it?
Michael Wolberg
2,764 PointsHaha yea that's what I figured out too!
Michael Wolberg
2,764 PointsThat silly period! Thank you!
Qamar Ramzan
10,377 PointsQamar Ramzan
10,377 PointsHi Michael Its working fine. Whats the issue?