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 trialstarr13
2,494 PointsChallenge Task .toUpperCase () method
I am not sure where I am going wrong. Someone, please explain. Thanks! Julia
var id = "Jane";
var lastName = "Smith";
var message = (id + lastName);
var userName = message;
console.log(userName.toUpperCase(message));
<!DOCTYPE HTML>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>JavaScript Basics</title>
</head>
<body>
<script src="app.js"></script>
</body>
</html>
1 Answer
furkan
11,733 PointsHi Julia,
The question asks you to make use of the .toUpperCase() function so the username is in upper case. The solution is below:
var id = "23188xtr";
var lastName = "Smith";
var userName = id.toUpperCase() + '#' + lastName.toUpperCase();
ac10
12,799 Pointsac10
12,799 PointsThe challenge instructions say to include the "#" symbol in your answer. Also, for some reason it won't let you just add the variables into that
message
variable you created (although that would be easier -__-).I did the below instead and it worked:
var userName = id.toUpperCase() + "#" + lastName.toUpperCase();
Another thing to note:
toUpperCase()
is a string method with no parameters; you don't need to put anything inside of the parentheses.