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 trialColton Schmucker
1,335 PointsHow do I answer this challenge?
The question: Add a # symbol and lastName in uppercase to the end of the userName string. The final value of the userName is "23188XTR#SMITH"
My Code: var id = "23188xtr"; var lastName = "Smith"; var userName = id.toUpperCase();
How do i get the # symbol in here along with making the last name upper case? All within the same line? I tried to string this together, but it did not work.
My failed line: var userName = id.toUpperCase + "#" += lastName.toUpperCase();
I am STUCK. Lol Can someone explain to me what I am doing wrong/how to correct this?
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>
3 Answers
B.B. Groeneveld
2,826 PointsI think there is something not right with your syntax. In your userName string, you have your id variable that you want to go in UpperCase, so you should end this with a parenthesis, a (). I had something like this:
var id = "23188xtr";
var lastName = "Smith";
var userName = id.toUpperCase();
userName += "#" + lastName.toUpperCase();
I hope it works for you!
Kristian Woods
23,414 PointsYou don't have '()' at the end of the first toUpperCase()
var userName = id.toUpperCase() + '#' + lastName.toUppercase();
Colton Schmucker
1,335 PointsThank you, guys! That worked!
That makes sense. I was forgetting/misplacing that minor detail. Lol.
Colton Schmucker
1,335 PointsColton Schmucker
1,335 PointsThis worked! Thank you!!!!