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 trialkevin salinas
2,392 Pointswhen you initialize with "" is the same as initializing with 0?
for example you wan to initialize hits and misses if you do it like hits = ""; is it the same thing if I did this hits = 0; ?????
1 Answer
Alexander Davison
65,469 Points0
is not a string, so I don't see how you can store it inside a String
variable. hits
is meant to be a String
object. (It contains the letters the user guessed correctly)