Skip to content

Instantly share code, notes, and snippets.

@EmanuelCadems
Created May 9, 2019 14:00
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 EmanuelCadems/e4925dec4d5056661c43a3b044244cde to your computer and use it in GitHub Desktop.
Save EmanuelCadems/e4925dec4d5056661c43a3b044244cde to your computer and use it in GitHub Desktop.
# sample 1:
a = 5
a ||= 3
a
#result:
5
# same as:
a = if a
a
else
3
end
# same as:
a = a ? a : 3
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment