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

ivanakopric
ivanakopric
5,962 Points

The Student Record Search Challenge

Hello. Could someone please explain me why is this wrong. And is there a way I could track what is happening in every step of a JavaScript code?

var message = '';
var student;

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

do {    
    var input = prompt ("Enter a name of a student or exit with quit.");
    input = input.toLowerCase();    

    for (var i = 0; i < students.length; i += 1) {
        student = students[i];

        if (student.name === input){    
        message = '<h2>Student: ' + student.name + '</h2>';
        message += '<p>Track: ' + student.track + '</p>';
        message += '<p>Points: ' + student.points + '</p>';
        message += '<p>Achievements: ' + student.achievements + '</p>';
        print (message);
        }
      }

} while (input !== "quit");

Thank you!

1 Answer

Steven Parker
Steven Parker
230,995 Points

This code is missing the "students" object, but I notice that the input is being converted to lower case. This means it can only find a match if the names are also stored in lower case.

You could make the comparisons case-insensitive by converting the name as you compare it:

        if (student.name.toLowerCase() === input){  

And step debugging is a feature found in the Development Tools built into many browsers.

ivanakopric
ivanakopric
5,962 Points

Thank You. It works now.