Skip to main content
Journey Uncommon Logo
JourneyUncommon
easySwiftmap filter reduceSingle-choice MCQ

What does `mapped` contain?

let strs = ["1", "two", "3"] let mapped = strs.compactMap { Int($0) } print(mapped)