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 trialhakop taturyan
245 Pointswhat is wrong with my .toUpperCase code?
let firstName;
let lastName;
let role = 'developer';
firstName += "Jack";
lastName += "Taturyan";
let msg = firstName + " " + lastName + ":" + role + ".";
let role = role.toUpperCase() );
2 Answers
Steven Parker
231,236 PointsThere's a few issues here:
- the parentheses on the last line are unbalanced
- you can't declare the same variable twice
- the challenge wants the
msg
to contain an uppercased role, but not change the role variable - there should be a colon and a space between the name and role
- there should not be a period at the end
Abigail Schultz
Web Development Techdegree Student 3,796 PointsActually I figured it out, I realize I wasn't capitalizing "case" in ".toUpperCase". :)
Abigail Schultz
Web Development Techdegree Student 3,796 PointsAbigail Schultz
Web Development Techdegree Student 3,796 PointsI am having a similar issue, how do I change the .toUppercase()? It won't accept anything I try.
Steven Parker
231,236 PointsSteven Parker
231,236 PointsYou might want to start a fresh question where you show your code.