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

Java Java Objects Creating the MVP Current Progress

David Reese
David Reese
3,515 Points

Detects all letters except the first for some reason...

for instance the word Humphrey detects all letters fine but if I input H, only one is detected. If I use a word like tree and give the letter T, it tells me I missed

John Lack-Wilson
John Lack-Wilson
8,181 Points

Hi David, if you're having problems with your own code we'll need you to post it here to be able to help.

1 Answer

David Reese
David Reese
3,515 Points

I figured out the problem; It wasn't ignoring case, for instance my answer was in upper case and I typed in lower case and it didn't take it. I fixed this by using the .toLowerCase() function.