Skip to content

Instantly share code, notes, and snippets.

@Ceri-anne
Last active May 7, 2018 13:55
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 Ceri-anne/36387f6ef3f21743e1752bff70a3078b to your computer and use it in GitHub Desktop.
Save Ceri-anne/36387f6ef3f21743e1752bff70a3078b to your computer and use it in GitHub Desktop.
let numbers = [1,2,3,4,5,6,7,8,9,10]
let evenNumbers = numbers.compactMap { $0 % 2 == 0 ? $0 : nil }
print(evenNumbers) //returns [2,4,6,8,10]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment