Welcome to the Treehouse Community
The Treehouse Community is a meeting place for developers, designers, and programmers of all backgrounds and skill levels to get support. Collaborate here on code errors or bugs that you need feedback on, or asking for an extra set of eyes on your latest project. Join thousands of Treehouse students and alumni in the community today. (Note: Only Treehouse students can comment or ask questions, but non-students are welcome to browse our conversations.)
Looking to learn something new?
Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and a supportive community. Start your free trial today.

4Ctech Admin
5,062 PointsQuestion about balance method
Is it better to create the balance method or to simply update the balance as we add each transaction?
1 Answer

J Scott Erickson
11,883 PointsI would have the actions ( deposit / withdraw ) update the balance themselves. Although you could have a method like so.
def balance( amount, action )
case action
when 'deposit'
@balance = @balance + amount
when 'withdraw'
@balance = @balance - amount
end
end
This is a pretty rudimentary implementation. There would be all sorts of things you might want to do here like validate that amount is a fixnum with two decimals, make sure that 'action' is either withdraw or deposit.