Skip to content

Instantly share code, notes, and snippets.

@NaiyaShah-BTC
Created April 8, 2019 10:27
Show Gist options
  • Select an option

  • Save NaiyaShah-BTC/9a6956dbf17b84bf89dd108a1731de13 to your computer and use it in GitHub Desktop.

Select an option

Save NaiyaShah-BTC/9a6956dbf17b84bf89dd108a1731de13 to your computer and use it in GitHub Desktop.
# bad
properties.present? && properties[:user].present? && properties[:user][:profile].present?
# Better approach
properties.try(:[], :user).try(:[], :profile).present?
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment