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 Basics Making Decisions in Your Code with Conditional Statements The Conditional Challenge Solution

How to fix 'null' issue if a user selects: 'Cancel' on prompt?

Not really part of the challenge but I'm just curious...

My program runs fine, but if a user were to select 'Cancel' on one of my prompts, the program encounters an error:

Uncaught TypeError: Cannot read property 'toUpperCase' of null

What is a solution to this?

1 Answer

Steven Parker
Steven Parker
229,732 Points

One approach would be to confirm that the response is not null first, to treat null as a wrong answer:

if (answer1 != null && answer1.toUpperCase() == "RUBY") {
  correct += 1;
}

Other strategies would include a separate test for null, and either ending the program or asking the question again.