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

juliana Gonçalves P S Ferreira
juliana Gonçalves P S Ferreira
2,745 Points

exercise one is no longer passing at the javascript basics course. i cannot finish the 2 part if one is no longer right.

had to change the answer to question one to do te second

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

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

1 Answer

Umesh Ravji
Umesh Ravji
42,386 Points

Hi Juliana, the reason why that tends to happen is because the current code actually contains a syntax error so it prevents any work you've done from passing previous tests.

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

This code isn't valid JavaScript, you cannot use string concatenation with the += in that way.

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

Is what you're looking for.