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

Detra Sheard
Detra Sheard
511 Points

don't understand

I have gotten confused with how to add all of these together

app.js
var id = "23188xtr";
var lastName = "Smith";
var userName = id.toUpperCase();
var userName += + "#" + lastName.toUpperCase();
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>

2 Answers

Benjamin Larson
Benjamin Larson
34,055 Points

You're close to having it. In your last line, you should not add the var keyword again - in doing so you are essentially overwriting the previous value. Also, you should not have the concatenation operator (+) preceding the string "#". Using the += operator is sufficient to add it to the current value and adding I believe adding the additional one will cause a syntax error.

userName += "#" + lastName.toUpperCase();
Detra Sheard
Detra Sheard
511 Points

TY Benjamin. I really appreciate it