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 trialjohn larson
16,594 Pointsgetting [Object][object] instead of the values from the properties.
//variables
var message = "";
var student;
//start w/ a for loop to cycle the array
//and access the student OBJECT inside it
for (var i = 0; i < students.length; i += 1) {
// take ONE student out of STUDENTS
student = students[i];
// access the PROPERTY of that OBJECT
message += "Student " + student.name + "<br>";
}
print(message);
1 Answer
Steven Parker
231,269 PointsThis little snippet looks okay, perhaps the problem is elsewhere. You can share all the code at once if you use the snapshot function in the workspace and provide the link to that.
john larson
16,594 Pointsjohn larson
16,594 PointsThanks Steve, I did look somewhere else, cause i noticed it printed fine to the console. I had some code at the bottom of my file that I thought I had commented out. Got rid of that and it works fine.