Skip to content

Instantly share code, notes, and snippets.

Created March 1, 2012 16:17
Show Gist options
  • Save anonymous/154fbaa613e1951418fe to your computer and use it in GitHub Desktop.
Save anonymous/154fbaa613e1951418fe to your computer and use it in GitHub Desktop.
[1,2,3].push 4
# => [1, 2, 3, 4]
[1,2,3].concat 4
# => #<TypeError: can't convert Fixnum into Array>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment