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 trialVictor Mejia
690 PointsI am having trouble adding two variables in uppercase letters together. Can anyone help?
Finally, add a # symbol and lastName in uppercase to the end of the userName string. The final value of userName is "23188XTR#SMITH". This is what I am supposed to do, but I cannot seem to get the code right.
var id = "23188xtr";
var lastName = "Smith";
var userName = id.toUpperCase() + lastName.toUpperCase();
I am having trouble adding two variables in uppercase letters together. Can anyone help
<!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
Veljo Palanen
29,914 PointsIt does put Your two variables id and lastName together
var id = "23188xtr";
var lastName = "Smith";
var userName = id.toUpperCase() + lastName.toUpperCase();
//I am having trouble adding two variables in uppercase letters together. Can anyone help
console.log(userName);
console.log(userName); prints this out
23188XTRSMITH
Veljo Palanen
29,914 PointsIf you need a print out "23188XTR#SMITH" then to this:
var userName = id.toUpperCase() + '#' + lastName.toUpperCase();
Or if you need "23188XTR SMITH" then just replace # with a space
Victor Mejia
690 PointsVictor Mejia
690 PointsSorry, I should have specified. The goal is to have "23188XTR#SMITH" this print out.