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 trialNathaniel Boonzaaijer
Full Stack JavaScript Techdegree Student 8,607 PointsStudent 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
231,248 PointsFor code formatting info, use the Markdown Cheatsheet reference offered below, or watch this video.
1 Answer
Steven Parker
231,248 PointsThe code shown above references "students", but nothing by that name is defined.
Julian Cobos
10,646 PointsI suggest you don't try to rush through the videos. Start from the beginning of this Chapter they explain everything very clearly. good luck!
Justin Cantley
18,068 PointsJustin Cantley
18,068 PointsCan you post your code?