Skip to content

Instantly share code, notes, and snippets.

@fitomad
Created September 2, 2018 20:05
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 fitomad/3653e1345700554a34e53e64deaf6054 to your computer and use it in GitHub Desktop.
Save fitomad/3653e1345700554a34e53e64deaf6054 to your computer and use it in GitHub Desktop.
var numeros = [ 0, 1, 2, 3, 4, 5, 6, 7, 8, 9 ]
numeros.removeAll() { $0 % 2 != 0 }
print(numeros)
/*
[0, 2, 4, 6, 8]
*/
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment