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 trialMohammed Zeeshan
Courses Plus Student 3,302 PointsWhere i'm getting erred, help me correct it!!!
var message = ' ';
var student;
var search;
function print(message){
var outerDiv = document.getElementById('output');
outerDiv.innerHTML = message;
}
while(true){
search = prompt('Search for student by entering her/his name. Type \'quit\' to exit the loop');
if(search === 'quit'){
break;
} else if(search === 'list'){
for(var i=0; i<students.length; i+=1){
student= students[i];
message += '<h1>'+ 'Student : ' + student.name + '</h1>' ;
message += '<p> Track : ' + student.track + '</p>';
message += '<p> Achievements : ' + student.achievements + '</p>';
message += '<p> Points : ' + student.points + '</p>';
}
print(message);
break;
} else(i === students.indexOf('search')){
student= students[i];
message += '<h1>'+ 'Student : ' + student.name + '</h1>' ;
message += '<p> Track : ' + student.track + '</p>';
message += '<p> Achievements : ' + student.achievements + '</p>';
message += '<p> Points : ' + student.points + '</p>';
print(message);
break;
}
}
2 Answers
Mohammed Zeeshan
Courses Plus Student 3,302 PointsI improved it a little bit, still not fine with this though
var message = ' ';
var student;
var search;
function print(message){
var outerDiv = document.getElementById('output');
outerDiv.innerHTML = message;
}
while(true){
search = prompt('Search for student by entering her/his name. Type \'quit\' to exit the loop');
if(search === 'quit'){
break;
} else if(search === 'list'){
for(i=0; i<students.length; i+=1){
student= students[i];
message += '<h1>'+ 'Student : ' + student.name + '</h1>' ;
message += '<p> Track : ' + student.track + '</p>';
message += '<p> Achievements : ' + student.achievements + '</p>';
message += '<p> Points : ' + student.points + '</p>';
}
print(message);
break;
} else {
if(students.indexOf(search) > -1){
student = students[i];
message += '<h1>'+ 'Student : ' + student.name + '</h1>' ;
message += '<p> Track : ' + student.track + '</p>';
message += '<p> Achievements : ' + student.achievements + '</p>';
message += '<p> Points : ' + student.points + '</p>';
print(message);
break;
}
}
}
Judith Copeland
Full Stack JavaScript Techdegree Graduate 17,924 PointsYou can also use two functions -one for the search and one for the indexOf. Then call the functions passing arguments as needed.