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

Kuladej Lertkachonsuk
seal-mask
.a{fill-rule:evenodd;}techdegree
Kuladej Lertkachonsuk
Full Stack JavaScript Techdegree Student 3,175 Points

Can anyone fix my code please

I try to break the loop after typing quit using the following code;

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

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

while(true){ search = prompt("please type in student's name or type 'quit' to exit the program");

if(search.toUpperCase == 'QUIT' || search === null){ break; } }

However, the loop does not break after you type 'quit'. It works fine without .toUpperCase or .toLowerCase.

PLEASE HELP. very confused now

1 Answer

You need to invoke toUpperCase() (notice the parens at the end of toUpperCase).

See example code below. https://www.w3schools.com/js/js_function_invocation.asp

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

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

while(true) { 
    search = prompt("please type in student's name or type 'quit' to exit the program");
    if(search.toUpperCase() == 'QUIT' || search === null) { 
        break;
    } 
}