docs/zh_hans/reference/bigint/maxBy.md
BigInt)返回数组中派生出的 BigInt 值最大的元素。
const largest = maxBy(items, getValue);
::: info
此函数仅可从 es-toolkit/bigint 获得,以避免与其他数字类型的类似函数发生潜在冲突。
:::
maxBy(items, getValue)当您要比较的 BigInt 位于对象内部,并且想拿回整个对象而不仅仅是数字时,请使用 maxBy。传入一个从每个元素中取出该值的函数。
import { maxBy } from 'es-toolkit/bigint';
const accounts = [
{ owner: 'alice', balance: 10n },
{ owner: 'bob', balance: 30n },
{ owner: 'carol', balance: 20n },
];
const richest = maxBy(accounts, account => account.balance);
console.log(richest); // { owner: 'bob', balance: 30n }
当多个元素的最大值相同时,返回第一个。getValue 还会接收索引和整个数组。
import { maxBy } from 'es-toolkit/bigint';
const first = { id: 'a', score: 30n };
const second = { id: 'b', score: 30n };
console.log(maxBy([first, second], item => item.score)); // { id: 'a', score: 30n }
// 按同时依赖元素及其位置的值进行比较
const rounds = [{ points: 5n }, { points: 5n }, { points: 5n }];
const best = maxBy(rounds, (round, index) => round.points * BigInt(index + 1));
console.log(best); // 第三轮,因为它的乘数最大
空数组没有可返回的元素,所以会抛出错误。
import { maxBy } from 'es-toolkit/bigint';
maxBy([], () => 0n); // RangeError: Cannot find the maximum of an empty array.
items (readonly T[]): 要搜索的元素数组。getValue ((element: T, index: number, array: readonly T[]) => bigint): 返回用于比较的 BigInt 的函数。(T): 返回派生出的 BigInt 最大的元素。如果有多个元素并列,则返回其中的第一个。
如果数组为空,则抛出 RangeError。