Skip to content

Instantly share code, notes, and snippets.

@KelseyDH
Last active August 23, 2019 10:16
Show Gist options
  • Save KelseyDH/b4900fe722db3983d6c991cd7ae427ed to your computer and use it in GitHub Desktop.
Save KelseyDH/b4900fe722db3983d6c991cd7ae427ed to your computer and use it in GitHub Desktop.
# .present?
if user.savings_account.present?
user.savings_account.available_balance_cents
else
0
end
# .try
user.try(:savings_account).(:available_balance_cents) || 0
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment