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

idriss Elouilani
PLUS
idriss Elouilani
Courses Plus Student 1,232 Points

I used id Uppercase var Id "23188xtr"

var userName = id.toUpperCase();. add # to lastName"#smith"to>UpperCase(); I tried to add them togehter to userName var userName+="#smith"to.UpperCase(); doesn't work I tried this way var userName= (userName()+lastName()); it doesn't work

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

var userName = id.toUpperCase();
var lastName = "#smith"to.UpperCase();
var userName = (id.toUpperCase()+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>

1 Answer

Caleb Kemp
Caleb Kemp
12,754 Points

okay, I think you are close to the answer.... first thing, if you create

var userName = whatever;
var userName = something else;

you are going to get a syntax error, because you can only declare a variable one time. If you want to do that you need to write

var userName = whatever;
username = something else;

The way I would solve this is

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

var userName = id.toUpperCase();
userName = userName + "#" + lastName.toUpperCase();

let me know if you have any questions about it or anything