Skip to content

cutRight

Subhajit Sahu edited this page May 19, 2020 · 23 revisions

Breaks array after given indices. 🏃 📼 📦 🌔 📒

Alternatives: left, right.

array.cutRight(x, is);
// x:  an array
// is: split indices (sorted)
const array = require('extra-array');

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

array.cutRight(x, [0, 4]);
// [ [ 1 ], [ 2, 3, 4, 5 ], [] ]

references

Clone this wiki locally