Skip to content

flatMap

Subhajit Sahu edited this page Feb 2, 2021 · 15 revisions

Flattens nested array, based on map function. 🏃 📼 📦 🌔 📒

Alternatives: flat, flatMap.


array.flatMap(x, [fm], [ft]);
// x:  an array
// fm: map function (v, i, x)
// ft: test function (v, i, x)
const array = require("extra-array");

var x = [[1, 2], [3, [4, [5]]]];
array.flatMap(x);
// [ 1, 2, 3, [ 4, [ 5 ] ] ]

array.flatMap(x, v => array.flat(v, 1));
// [ 1, 2, 3, 4, [ 5 ] ]

array.flatMap(x, v => array.flat(v));
// [ 1, 2, 3, 4, 5 ]


References

Clone this wiki locally