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 trialJoseph Chauvin
Full Stack JavaScript Techdegree Student 12,029 PointsWhy do you need to assign an empty string to the message variable to work?
It doesn't make sense on why you need to assign the 'message' variable an empty string before adding anything to it.
var message = '';
for (var i = 0; i < students.length; i += 1) {
studentName = students[i];
message += '<h2>Student: ' + studentName.name + '</h2>';
}
1 Answer
Robert Stefanic
35,170 PointsBecause if you do not, then the value of message
will be undefined, and JavaScript doesn't know how to add undefined
and a string.
This is why you have to initialize the variable to a string, because JavaScript does know how to concatenate two strings.