-
Notifications
You must be signed in to change notification settings - Fork 5
sort
Subhajit Sahu edited this page Dec 8, 2022
·
29 revisions
Arrange values in order.
function sort(x, fc, fm)
// x: an array
// fc: compare function (a, b)
// fm: map function (v, i, x)
const xarray = require('extra-array');
var x = [-2, -3, 1, 4];
xarray.sort(x);
// → [ -3, -2, 1, 4 ] (compares numbers)
xarray.sort(x, (a, b) => Math.abs(a) - Math.abs(b));
// → [ 1, -2, -3, 4 ]
xarray.sort(x, null, v => Math.abs(v));
// → [ 1, -2, -3, 4 ]