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

Luis Roman
Luis Roman
1,511 Points

You should explain or show an example on the Challenge Task 2 of 2. We didn't even get an example of how is done/works.

No examples or instructions on how to make this possible.

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

var userName = (id.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

Jazz Jones
Jazz Jones
8,535 Points
var userName = id.toUpperCase();

You added extra parenthesis when assigning the username variable.

Luis Roman
Luis Roman
1,511 Points

Thanks, I didn't explain myself or what I was having an issue with. The video kept showing those extra parenthesis. I was able to look at someone else question and answer and figured it out. It was adding # + lastName.toUppercase. I appreciate the feedback, I see this community between students and teachers actually work. Very pleased with the fast response. Highly appreciated, Thanks again.