Skip to content
Subhajit Sahu edited this page Mar 17, 2020 · 25 revisions

Keeps similar values together and in order.

array.group(x, is);
// x:  an array
// fn: compare function (a, b)
const array = require('extra-array');

var a = [1, 2, 3, 4, 5];
array.slice$(a, 2);
// [3, 4, 5]

a;
// [3, 4, 5]

var b = [1, 2, 3, 4, 5];
array.slice$(b, 2, 4);
// [3, 4]

b;
// [3, 4]

references

Clone this wiki locally