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 trialFranchesca Quezada
256 PointsFor some reason, I can't get the "#" added. Can someone please help? What am I doing wrong?
I understand the string concept and it worked fine while practicing in the Workspace, but I can't get it all to come together with this challenge.
var id = "23188xtr";
var lastName = "Smith";
var userName = id.toUpperCase();
var userName = lastName.toUpperCase();
userName += "#";
<!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>
2 Answers
Stuart Wright
41,120 PointsNote that the challenge wants you to add the # then the upper-case last name to the existing userName variable. You have done something a bit different. Here is a possible solution:
userName += "#";
userName += lastName.toUpperCase();
The difference between my solution and yours is that in mine the # comes before the last name, and also it still contains the original contents of userName.
Larry Coonrod
5,041 PointsA simpler solution is this:
var id = "23188xtr";
var lastName = "Smith";
var userName =id.toUpperCase() + '#' + lastName.toUpperCase();
Franchesca Quezada
256 PointsFranchesca Quezada
256 PointsThank you!!