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 Solution

Nathaniel Boonzaaijer
seal-mask
.a{fill-rule:evenodd;}techdegree
Nathaniel Boonzaaijer
Full Stack JavaScript Techdegree Student 8,607 Points

Student search issues

For some reason that I cannot figure out, the prompt dialogue is not appearing. Does anyone know what could be the issue? Also when I copy the code here it puts all the code together.

var message = ''; var student; var search;

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

for (var i = 0; i < students.length; i += 1) { student = students[i]; message += '<h2>Student: ' + student.name + '</h2>'; message += '<p>Track: ' + student.track + '</p>'; message += '<p>Points: ' + student.points + '</p>'; message += '<p>Achievements: ' + student.achievements + '</p>'; }

while (true) { search = prompt('Search for a student.'); if (search.toLowerCase() === 'quit') { break; } else if (search ==='list') { print (students); }

Steven Parker
Steven Parker
229,732 Points

For code formatting info, use the Markdown Cheatsheet reference offered below, or watch this video.

1 Answer

Steven Parker
Steven Parker
229,732 Points

The code shown above references "students", but nothing by that name is defined.

Julian Cobos
Julian Cobos
10,645 Points

I suggest you don't try to rush through the videos. Start from the beginning of this Chapter they explain everything very clearly. good luck!