Created
May 20, 2019 07:55
-
-
Save saru2020/5b11ca4de999f3cf7155802a3ba20601 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
//Functional Programming | |
let contactNames = contacts.map({ | |
return $0.firstName + " " + $0.lastName | |
}) | |
print(contactNames) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment