Skip to content
Subhajit Sahu edited this page May 19, 2020 · 27 revisions

Finds smallest value. 🏃 📼 📦 🌔 📒

Alternatives: min, [minIndex].
Similar: min, max, range.

iterable.min(x, [fc], [fm]);
// x:  an iterable
// fc: compare function (a, b)
// fm: map function (v, i, x)
const iterable = require('extra-iterable');

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

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

iterable.min(x, null, v => Math.abs(v));
// 1

references

Clone this wiki locally