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 trial

JavaScript JavaScript Basics (Retired) Storing and Tracking Information with Variables Using String Methods

String Concatenation

I am totally missing something when it comes to combining the id and lastName variables. Any suggestions?

app.js
var id = "23188xtr";
var lastName = "Smith";

var userName = id.toUpperCase();
userName = 'id' + '#' + 'lastName';
index.html
<!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>

4 Answers

Colin Bell
Colin Bell
29,679 Points

You're concatenating the 'id' and `'lastName' as strings instead of as variables. The way you have it written would set the userName variable to 'id#lastName' no matter what the id and lastName variables were equal to.

You just need to take the quotes off those, but leave the quotes on the '#'. Also, it's asking that both id and lastName be set to uppercase.

var id = "23188xtr";
var lastName = "Smith";

var userName = id.toUpperCase() +  '#' + lastName.toUpperCase();
Abe Layee
Abe Layee
8,378 Points

By adding quotation mark around the var id and lastName, they become a string instead of a variable. Your goal here is to add the toUpperCase() metho on each id and lastName variable.

var id = "23188xtr";
var lastName = "Smith";

var userName = id.toUpperCase();
userName = 'id' + '#' + 'lastName'; // the var id + lastName + # all become a string with quotation mark around them

Something like this

var id = "23188xtr";
var lastName = "Smith";
userName = id.toUpperCase() + '#' + lastName.toUpperCase();

Thank you so very much!

Abe Layee
Abe Layee
8,378 Points

You're welcome:D