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 trialGary Calhoun
10,317 PointsI made a bit of a mess..
Not really sure how to get this to pull the query I was able to get the program to quit lol, thats about it.
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];
}
while (true) {
search = prompt("Search fo a student.Type 'quit' to exit the program");
search = search.toLowerCase();
if (search === 'quit'){
break;
} else if (search === 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 {
if (students.indexOf(search) > -1){
print(search + 'student is not available.');
}
}
}
print(message);
1 Answer
Samuel Webb
25,370 PointsYou have an extra ending curly brace after the while loop. That could be the issue.
Gary Calhoun
10,317 PointsGary Calhoun
10,317 PointsThanks