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

Ned Redmond
Ned Redmond
5,615 Points

After crashing my browser dozens of times trying to resolve this problem, I've finally done it, and I just want to share

var message = '';
var student;
var searchStudent;

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

do {
  searchStudent = prompt("Enter student name for record.");
  if (searchStudent === 'quit' ) {
     message = '<h2>Reload this page to search again.<h2>';
   } else {
     for (var i = 0; i < students.length; i++) {
       student = students[i]
       if (searchStudent == student.name) {
         message += '<h2>Student: ' + student.name + '</h2>';
         message += '<p>Track: ' + student.track + '</p>';
         message += '<p>Points: ' + student.points + '</p>';
         message += '<p>Achievements: ' + student.achievements + '</p>';
       } else {
         message += 'No student by that name. Please reload to try again.';
         break;
       }
     }   
   }
} 
while ( message === '' );

print(message);