-
Notifications
You must be signed in to change notification settings - Fork 5
range
wolfram77 edited this page Mar 25, 2020
·
26 revisions
Finds smallest and largest values.
Alternatives: [compare], [map].
array.range(x, [fn]);
// x: an array
// fn: compare function (a, b)
const array = require('extra-array');
var x = [1, 2, -3, -4];
array.range(x);
// [-4, 2]
array.range(x, (a, b) => Math.abs(a) - Math.abs(b));
// [1, -4]