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 trialSisanda Veti
1,867 PointsWhere to i add the # symbol?
I'm lost.
var id = "23188xtr";
var lastName = "Smith";
var userName = id.toUpperCase();
var userName = 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
Steven Parker
231,236 PointsThat symbol goes in between the uppercased "id" and the uppercased "lastName". You can join strings by concatenation (done with the "+" symbol).
Also, if you re-assign a variable you have already declared, you do not need the word "var" in front of it again.
Joseph Sworyk
7,879 PointsYou have defined userName twice... declarations should instead look like this:
var userName= id.toUpperCase(); lastName = lastName.toUpperCase();
Then conctonate these variables with a "#" in between.
Joseph Sworyk
7,879 Pointsto be clear.. I mean you have defined it twice as both capital id and capital lastName.. should define the capitalized instances with seperate declarations.