Dropping the parenthesis when calling functions with a closure blows my mind:
team.filter { $0.hasPrefix("T") }
The equivalent in JS:
team.filter($0 => $0.startsWith("T"))
Woo! The checkpoint test actually didn’t take me very long to complete.
Day 9 in the books! #100DaysOfSwiftUI