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 trialFrank Kuester
3,002 PointsWhy does 'puts bank_account' return the value of the overwritten to_s method?
I would have expected a different coding for this: 'puts bank_account.to_s'
So why is this not necessary?
1 Answer
Jamie Barton
14,498 PointsBy default, Ruby returns an object's class with the object id as a to_s
method unless you specify a to_s method. In this case just calling puts bank_account
will return the method Jason Seifer defined because he redefined it within the class.