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/12ce73048961749a7e698d53d34e85fe to your computer and use it in GitHub Desktop.
Save Ceri-anne/12ce73048961749a7e698d53d34e85fe to your computer and use it in GitHub Desktop.
let players = ["Gerrard", "Dalglish", "Barnes"]
let playersUpper = players.map { $0.uppercased() }
print(playersUpper) // returns ["GERRARD", "DALGLISH", "BARNES"]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment