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 trialAgnes Caringal
6,239 Pointswhat do you think my error with this
regarding toUpperCase of a string
var id = "23188xtr";
var lastName = "Smith";
var userName = "id.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>
7 Answers
Gloria Dwomoh
13,116 PointstoUpperCase() is a function so it does not suppose to be in quotes, the same with id because it is a variable
so that specific point suppose to be written as
var userName = id.toUpperCase()
it has to do with syntax.
Agnes Caringal
6,239 Pointsthank you so much Gloria Dwomoh :)
Gloria Dwomoh
13,116 PointsYou are welcome Agnes Caringal :)
Agnes Caringal
6,239 Pointshow about if I combine to variables using #
Gloria Dwomoh
13,116 PointsCan you give an example of that?
Agnes Caringal
6,239 PointsComplete the assignment to the userName variable by adding a symbol followed by an all uppercase version of the lastName variable. In other words, using string concatenation so that the final value of the userName is "23188xtr#smith"
this is my answer:
var UserName = id.toUppercase() "#" lastName.toUpperCase();
Agnes Caringal
6,239 Pointsbut when I run my code, like....Opps! it looks like task 1 is no longer passing
Gloria Dwomoh
13,116 PointsYou need to use the + sign to concatenate.
Agnes Caringal
6,239 Points- sign not the # sign
Gloria Dwomoh
13,116 PointsI mean... +"#"+ ...
Agnes Caringal
6,239 Pointsthank you so much, so that the things I have to remember when I start adding or combining to variables. :)
Gloria Dwomoh
13,116 PointsYes. You are welcome :)