Table of Contents

Functional Programming - Map

About

A page about the map functional programming function

The map method creates a new collection with the results of calling a provided function on every element in the collection.

The map operation produces one output value per input value.

Example

from the map function of a javascript array

const numbers = [1, 2, 3, 4, 5];
const doubled = numbers.map((number) => number * 2);
console.log(doubled);