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 trialRuben Casillas
6,019 PointsPlease help ! :( I don't think I understood the concept pretty well.
It says I am not adding the # symbol, but I can't tell what is wrong.
var id = "23188xtr";
var lastName = "Smith";
var userName = id.toUpperCase(); + '#' + lastName.toUpperCase();
<!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
Marcus Parsons
15,719 PointsHey Ruben,
You are so close with your code! The only problem you have is a semi-colon right after id.toUpperCase()
when there shouldn't be one there, so if you remove that, the challenge will pass. Just remember that semi-colons only go on the very end of statements, regardless of whether you're calling functions or not. :)
Ruben Casillas
6,019 PointsThank you so much ! It turns out that after I deleted the semi-colon, it said task 1 was not working, but after I pressed a couple of times on "Check Work" I finally passed. Thank you again.
Marcus Parsons
15,719 PointsInteresting bug with the Challenge, but I knew it would work because of the basic rules for semi-colons. I'm glad it worked! If you want to go ahead and mark my answer as best answer, we can mark this as resolved. :) Happy Coding!