let johnsAndJanes = people.map(\\.name).filter { $0.hasPrefix("J") }

let johnsAndJanes2 = people.map { $0.name }.filter { $0.hasPrefix("J") }