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 triallbala
836 PointsChallenge task 2 of 2
I have no idea where I am going wrong, any ideas?
var id = "23188xtr";
var lastName = "Smith";
var userName = (id.length + '#' + lastName.length);
console.log(id.toUpperCase());
console.log(lastName.toUpperCase());
document.write (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
Cindy Lea
Courses Plus Student 6,497 PointsYou are trying to do too much. You just need 1 more line of code:
It should look like this:
var id = "23188xtr"; var lastName = "Smith";
var userName = lastName.toUpperCase();
This is for task 1...I see you wanted 2....
Cindy Lea
Courses Plus Student 6,497 PointsOK for challenge 2 this is what they wanted: I passed the challenge:
var id = "23188xtr"; var lastName = "Smith";
var userName = id.toUpperCase() + "#" + lastName.toUpperCase();
you have all these additional statements you dont need & when doing challenges you cant give it extra stuff. I know you werent sure what to do...hope this helps.
lbala
836 PointsAwesome, makes sense. Thanks for that!
lbala
836 Pointslbala
836 PointsHmm, this is a copy of the question: Complete the assignment to the userName variable by adding a # symbol followed by an all uppercase version of the lastName variable. In other words, using string concatenation so that the final value of userName is "23188XTR#SMITH"
I'm just getting confused on how to combine it all!
Thanks for your response btw!