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 trial

JavaScript JavaScript Loops, Arrays and Objects Tracking Data Using Objects The Student Record Search Challenge

Student Search Challenge

What is the error in this code?

var message = ''; var student; var flag=0 function print(message) { var outputDiv = document.getElementById('output'); outputDiv.innerHTML = message; }

while(true){ flag=0; var response = prompt('Enter the name of user and Enter quit to exit'); if(response.toLowerCase()==='quit'){ break; } else{ for(var key in students){ var name = key.name; if(name.toLowerCase===response){ flag=1; message+="<h2> Name : "+key.name+"</h2>"; message+="<p> Track : "+key.track+"</p>"; message+="<p> Achievment : "+key.achievements+"</p>"; message+="<p> Points : "+key.points+"</p>"; } } if(flag==0){ alert("Such name doesn't match in our database"); } print(message); }

}