Skip to content

Instantly share code, notes, and snippets.

@Ceri-anne
Last active April 29, 2018 16:19
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/d6f72acf1865120c19edd73e638a35c3 to your computer and use it in GitHub Desktop.
Save Ceri-anne/d6f72acf1865120c19edd73e638a35c3 to your computer and use it in GitHub Desktop.
let array = [1,2,3,4,5]
let doubleArray = array.map { $0 * 2 }
print(doubleArray) // returns [2,4,6,8,10]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment