Skip to content

Instantly share code, notes, and snippets.

@Gregg
Created August 14, 2012 16:14
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 Gregg/3350565 to your computer and use it in GitHub Desktop.
Save Gregg/3350565 to your computer and use it in GitHub Desktop.
missing challenge?
# before
def first_or_last_name
if user.first_name
user.first_name
else
user.last_name
end
end
# after
def first_or_last_name
user.first_name || user.last_name
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment