Skip to content

Instantly share code, notes, and snippets.

@tkfm-yamaguchi
Created August 12, 2014 06:20
Show Gist options
  • Save tkfm-yamaguchi/db2d17ef78c8aad922fd to your computer and use it in GitHub Desktop.
Save tkfm-yamaguchi/db2d17ef78c8aad922fd to your computer and use it in GitHub Desktop.
Array#tap mistery
# Array#tap mistery
array = [].tap do |array|
array << [1,3]
end
p array #=> [[1,3]]
array = [].tap do |array|
array += [1,3]
end
p array #=> []
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment