-
Notifications
You must be signed in to change notification settings - Fork 5
cutAt
Subhajit Sahu edited this page Jun 20, 2020
·
12 revisions
Breaks array at given indices. 🏃 📼 📦 🌔 📒
Alternatives: cut, cutRight, cutAt, cutAtRight.
Similar: cut, split, group.
array.cutAt(x, is);
// x: an array
// is: split indices (sorted)
const array = require('extra-array');
var x = [1, 2, 3, 4, 5];
array.cutAt(x, [1, 3]);
// [ [ 1 ], [ 2, 3 ], [ 4, 5 ] ]
array.cutAt(x, [0, 4]);
// [ [], [ 1, 2, 3, 4 ], [ 5 ] ]