简体中文
Appearance
在 数组 中查找通过函数应用到每个元素后的 最大值。如果数组为空,则返回 undefined。
数组
最大值
undefined
import { maxBy } from 'rattail' maxBy([{ n: 5 }, { n: 10 }, { n: 8 }], ({ n }) => n) // return { n: 10 }
arr
T[]
fn
(val: T) => number
T | undefined