Skip to content

Instantly share code, notes, and snippets.

View satan87's full-sized avatar
🏠
Working from home

nicolas satan87

🏠
Working from home
View GitHub Profile
// MARK: HIGHER ORDER FUNCTION
let bookBefore2020HOF = books.filter({$0.year < 2000})
// MARK: IF FILTER
var bookBefore2000 = [Book]()
for book in books {
if book.year < 2000 {
bookBefore2000.append(book)
}
}