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 trialMyles Cameron
2,225 PointsIs 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?
2 Answers
Ayoub AIT IKEN
12,314 Pointshey !
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
Myles Cameron
2,225 PointsOk so it is purely a preference thing, as I suspected. Thank you all.
Robert Richey
Courses Plus Student 16,352 PointsRobert Richey
Courses Plus Student 16,352 PointsYou can use either, but as the program author, we have to pick one to more easily figure out what the user entered.