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 (Retired) Making Decisions with Conditional Statements The Conditional Challenge Solution

Is there any reason Dave specifically uses toUpperCase?

I'm assuming toLowerCase is just as valid? Is there a specific reason why I shouldn't use toLowerCase over toUpperCase?

You can use either, but as the program author, we have to pick one to more easily figure out what the user entered.

answer1.toUpperCase() === "RUBY"

// is equivalent to

answer1.toLowerCase() === "ruby"

2 Answers

hey !

it really depends on how you want the user's input to be treated, if you have a form and you have to enter the username's lastname in upercase, you just gonna uppercase the prompt or the text field ! and same thing for the lowercase method

Ok so it is purely a preference thing, as I suspected. Thank you all.