-
Notifications
You must be signed in to change notification settings - Fork 5
flat
Subhajit Sahu edited this page Feb 2, 2021
·
20 revisions
Flattens nested array to given depth. 🏃 📼 📦 🌔 📒
array.flat(x, [n], [fm], [ft]);
// x: a nested array
// n: maximum depth (-1 => all)
// 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.flat(x);
// [ 1, 2, 3, 4, 5 ]
array.flat(x, 1);
// [ 1, 2, 3, [ 4, [ 5 ] ] ]
array.flat(x, 2);
// [ 1, 2, 3, 4, [ 5 ] ]