Skip to content

Instantly share code, notes, and snippets.

@pedro-vasconcelos
Created August 21, 2012 09:30
Show Gist options
  • Save pedro-vasconcelos/3413916 to your computer and use it in GitHub Desktop.
Save pedro-vasconcelos/3413916 to your computer and use it in GitHub Desktop.
Test if a variable exists
winners[buyer] ||= [] is a shortcut to:
winners[buyer] = winners[buyer] || [] is a shortcut to:
Set winners[buyer] equal to winners[buyer] or, if winners[buyer] is nil, set it to [].
You’re just making sure a variable is set before using it.
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment