When trying to access an element deep in an array of arrays, what is the best way to avoid getting the error 'undefined method `[]' for nil:NilClass' if an element doesn't exist?
For example I'm currently doing this, but it seems bad to me:
if @foursquare['response']['groups'][0].present? && @foursquare['response']['groups'][0]['items'].present?