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 trialEthan Chae
18,747 PointsJavaScript Loops, Arrays and Objects> The Build an Object Challenge
I was thinking about using two loops to do the job of printing out the student record. However it does not seem to pass. Any suggestions about how to improve this code?
var message = '';
var student;
function print(message) {
var outputDiv = document.getElementById("output");
outputDiv.innerHTML = message;
}
for (var i = 0; i < students.length; i + = 1) {
student = students[i];
for (var prop in student){
message += '<p>' + prop + ': ' + student[prop] + '</p>';
}
}
print(message);
1 Answer
akak
29,445 PointsHi,
for (var i = 0; i < students.length; i + = 1) // space between + & = when you increment "i" will throw an error
for (var i = 0; i < students.length; i += 1) // should work fine