Skip to main content
variable maxBy
import { maxBy } from "https://deno.land/x/30_seconds_of_typescript@v1.0.1/util.ts";

Returns the maximum value of an array, after mapping each element to a value using the provided function.

Use Array.prototype.map() to map each element to the value returned by fn, Math.max() to get the maximum value.

type

<T = any>(arr: T[], fn: MapFunc<T> | string) => unknown