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 (Retired) Delivering the MVP Validation

Sum Tsui
seal-mask
.a{fill-rule:evenodd;}techdegree
Sum Tsui
Full Stack JavaScript Techdegree Student 29,117 Points

why promptForGuess() will have to return a boolean value?

if promptForGuess() returns nothing, the program still works. is there a reason for letting promptForGuess() return a value?

1 Answer

Andrew Winkler
Andrew Winkler
37,739 Points

I may be mistaken, but i'm pretty sure promptForGuess() is considered to be a constructor of another parent class. By nature constructors don't need to return anything. They just establish attributes and values.

If this was helpful please remember to vote best answer! Happy coding!