Created
May 23, 2019 12:21
-
-
Save AppleCEO/92c988ddaddb4ef3d8b197b5a7cc72f7 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
let numbers = [10, 83, 95, 100, 92] | |
// numbers의 요소 중 짝수를 걸러내어 새로운 배열로 반환 | |
let evenNumbers: [Int] = numbers.filter { (number: Int) -> Bool in | |
return number % 2 == 0 | |
} | |
print(evenNumbers) | |
// [10, 100, 92] |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment