Skip to content

Instantly share code, notes, and snippets.

@NaiyaShah-BTC
Created April 8, 2019 10:29
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save NaiyaShah-BTC/1cb0288b7e8decc07341847a59170aaa to your computer and use it in GitHub Desktop.
Save NaiyaShah-BTC/1cb0288b7e8decc07341847a59170aaa to your computer and use it in GitHub Desktop.
employee_city_data = { Bob: 'Banglore', Steve: 'Pune', Joe: 'Ahmedabad' }
# bad
employee_city_data[:Naiya] || 'Ahmedabad'
# good
employee_city_data.fetch(:Naiya, 'Ahmedabad')
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment