Skip to content

Instantly share code, notes, and snippets.

@voleinikov
Created January 22, 2013 17:18
Show Gist options
  • Save voleinikov/4596397 to your computer and use it in GitHub Desktop.
Save voleinikov/4596397 to your computer and use it in GitHub Desktop.
Example of Array Splat
#Ex:
a = []
b = [1,2,3]
a.unshift(b) #>> gives you a = [[1,2,3]]
# If you instead use the splat it will give you
a.unshift(*b) #>> gives you [1,2,3]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment