Skip to content

Instantly share code, notes, and snippets.

@monorkin
Created December 23, 2018 20:57
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 monorkin/17fc9afd98b0368b6e8c463a64c1103a to your computer and use it in GitHub Desktop.
Save monorkin/17fc9afd98b0368b6e8c463a64c1103a to your computer and use it in GitHub Desktop.
array = [1,2,3,4,5]
array.map # => #<Enumerator: ...>
array.map { |i| i * 2 } # => [2, 4, 6, 8, 10]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment