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 trialJaime Rios
Courses Plus Student 21,100 PointsHelp with the using strong methods.
It asks me to create a final version with id + lastname in capital letters with a '#' between both elements. I checked the video twice and I do not find the "error"
var id = "23188xtr#";
var lastName = "Smith";
var userName = id + '#' + lastName;
userName.toUpperCase();
<!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
Keith Evans
17,869 PointsIt seems you've added the "#" directly into your first variable. Make sure to leave the first variable untouched and then concatenate the strings. Also, while you've used the .toUpperCase() method on your userName variable, that doesn't save the variable as uppercase. It would be better to use the .toUpperCase method on both your id and lastName variables while putting your strings together.
In the end, you'll want something like userName = id.toUpperCase() + "#" + lastName.toUpperCase();
Jaime Rios
Courses Plus Student 21,100 PointsJaime Rios
Courses Plus Student 21,100 PointsIt works just like you said.