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 trialPeter Retvari
2,566 PointsI have problem with this syntax: += When I'm trying to complete this little challenge, my program doesn't run.
var id = "23188xtr"; var lastName = "Smith";
var userName=id.toUpperCase();
var userName += "#" + lastName.toUpperCase();
document.write(userName);
1 Answer
Shadab Khan
5,470 PointsHi Peter,
Remove the 'var' keyword from line 3 of your code. You can't have two variables (var) with same names, hence the error.
JavaScript
var id = "23188xtr"; var lastName = "Smith";
var userName=id.toUpperCase();
userName += "#" + lastName.toUpperCase();
document.write(userName);
Peter Retvari
2,566 PointsPeter Retvari
2,566 PointsMany thanks for your quick answer. You helped a lot