What does it mean to "map" in the context of Redux?

In React and Redux: Map Dispatch to Props it says “It returns an object that maps dispatch actions to property names…” Does map just mean “connect” in this instance?

In mathematics a “mapping” is a transformation that takes a parameter and transforms it to something else (or itself). This is what map means in this context.
It transforms dispatch actions to property names.

1 Like