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 trialSahil Ahmed
580 PointsCan anyone help with my code java?
idk what to do for this stage?
var id = "23188xtr";
var lastName = "Smith";
var userName# id.toUpperCase() + "23188XTR#SMITH";
<!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
Steven Parker
231,236 PointsLuckily, you posted this in the "JavaScript" topic area. For future reference, "Java" is a different topic area (and an entirely different language).
It looks like you already passed task 1 and are working on task 2. The final value is provided just as info for you, it will not be used in the code. Instead, you'll do the same thing to the last name variable that you did to the id, and then add it onto the end.
You'll need to add a "#" in between the two, also using the + operator. And after the "userName" variable, you'll need an assignment operator (=) instead of the # symbol.
Sahil Ahmed
580 PointsI've done the exact code you told me to do for some odd reason its not working
Steven Parker
231,236 PointsPlease show the code you have after the changes.