Skip to content

Instantly share code, notes, and snippets.

@badeball
Created January 20, 2014 05:22
Show Gist options
  • Save badeball/8515259 to your computer and use it in GitHub Desktop.
Save badeball/8515259 to your computer and use it in GitHub Desktop.
a = [1, 2, 3, 4, 5]
a.collect { |n| next if n % 2 == 1; n * 2 }.compact # => [4, 8]
a.select { |n| n % 2 == 0 }.map { |n| n * 2 } # => [4, 8]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment