Introduction
Map, filter, and reduce help you work with lists of data easily. They let you change, pick, or combine items without writing loops.
You want to change every item in a list, like doubling numbers.
You want to keep only some items, like all even numbers.
You want to combine all items into one value, like adding all numbers.