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 trialEnemuo Felix
1,895 PointsCode challenge
please, where Am I getting it wrong?
var id = "23188xtr";
var lastName = "Smith";
id.toUpperCase();
var userName=
<!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>
5 Answers
Steven Parker
231,236 PointsYour assignment needs something on the right side of the "=".
It seems that you wrote exactly what you need, but it is sitting by itself on the line above. Just make it part of the assignment.
Enemuo Felix
1,895 PointsI added Some string on the fourth line like this
var userName="id "+"lastName" ;
but still gut the 'Bumer!'
Steven Parker
231,236 PointsDid you pass task 1 already? For task 1 you just need to combine the last 2 lines shown above (in the other order).
Enemuo Felix
1,895 PointsNo. Sorry I don't understand the second question. Pls can you be more clear Sir? Here's the link https://teamtreehouse.com/library/javascript-basics/storing-and-tracking-information-with-variables/using-string-methods
Steven Parker
231,236 PointsThere are two parts to the challenge. If you are still on task 1, you just need to combine the last 2 lines in your app.js above to make a single assignment statement.
Enemuo Felix
1,895 PointsPls, how do I do that?
Steven Parker
231,236 PointsI thought I said that above. Take what's on the line just above the last line away, and add it to the end of the last line.
An assignment ("=
") must have something on both sides.
Enemuo Felix
1,895 PointsThanks I have done that.