We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
Find largest values.
Alternatives: maximums, maximumEntries. Similar: maximums, minimums.
function maximums(x, n, fc, fm) // x: an array // n: number of values // fc: compare function (a, b) // fm: map function (v, i, x)
const xarray = require('extra-array'); var x = [4, 2, 1, 3, 5]; xarray.maximums(x, 2); // → [ 5, 4 ] xarray.maximums(x, 3); // → [ 5, 4, 3 ]