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

what is wrong with my .toUpperCase code?

app.js
let firstName;
let lastName;
let role = 'developer';
firstName += "Jack";
lastName += "Taturyan";
let msg = firstName + " " + lastName + ":" + role + ".";
let role = role.toUpperCase() );

2 Answers

Steven Parker
Steven Parker
230,274 Points

There'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
Steven Parker
Steven Parker
230,274 Points

You might want to start a fresh question where you show your code.