@extra-array/max.min
TypeScript icon, indicating that this package has built-in type declarations

2.10.19 • Public • Published

Finds largest entry. 📦 😺 🏃 📼 🌔 📜 📰 📘

Similar: min, max, range.

This is part of package extra-array.

This is browserified, minified version of @extra-array/max.
It is exported as global variable array_max.
CDN: unpkg, jsDelivr.


array.max(x, [fc], [fm]);
// x:  an array
// fc: compare function (a, b)
// fm: map function (v, i, x)
// → [index, value]
const array = require("extra-array");

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

array.max(x, (a, b) => Math.abs(a) - Math.abs(b));
// [ 3, -4 ]

array.max(x, null, v => Math.abs(v));
// [ 3, -4 ]


References

/@extra-array/max.min/

    Package Sidebar

    Install

    npm i @extra-array/max.min

    Weekly Downloads

    0

    Version

    2.10.19

    License

    MIT

    Unpacked Size

    5.82 kB

    Total Files

    8

    Last publish

    Collaborators

    • wolfram77