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

Null in Part 3 of Challenge The console shows the null value but won't the prompt stop anyway?

while (true) { search = prompt('Search student records: type a name [Jody] (or type "quit" to end)'); if (search === null || search.toLowerCase() === 'quit') { break; }

Not sure of null's purpose.

1 Answer

If the user clicks cancel search will be null. Without checking for null the line console.log("Did I execute?") below will not run because there will be an error in attempting to convert null to lowercase.

while (true) {
    search = prompt('Search student records: type a name [Jody] (or type "quit" to end)');
    console.log(search)
    if (search.toLowerCase() === 'quit') {
        console.log("Did I execute?")
        break; 
    }
}   

Ohhh, I get it. Lightbulb moment!