Skip to content
wolfram77 edited this page Mar 27, 2020 · 27 revisions

Finds smallest value.

Alternatives: compare, map.

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

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

array.min(x, (a, b) => Math.abs(a) - Math.abs(b));
// 1

references

Clone this wiki locally