Skip to content

Instantly share code, notes, and snippets.

@jhamon
Last active December 23, 2015 07:59
Show Gist options
  • Save jhamon/6604503 to your computer and use it in GitHub Desktop.
Save jhamon/6604503 to your computer and use it in GitHub Desktop.
nums = [1, 2, 3]
nums.map { |num| num.even? } # => [false, true, false]
nums.map(&:even?) # => [false, true, false]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment