js 找出集合中最小的数?

const list = [{
    id: 1,
    title: "a",
    seq: 0
}, {
    id: 2,
    title: "b",
    seq: 1
}, {
    id: 3,
    title: "c",
    seq: 1
}, {
    id: 4,
    title: "d",
    seq: 2
}, {
    id: 5,
    title: "e",
    seq: 4
}, {
    id: 6,
    title: "f",
    seq: 3
}]
const arr = [];
list.forEach(function(val) {
    arr.push(val.seq);
})
const min = Math.min(...arr);
console.log(min)

找出list最小的数是不是只能这样,有没有办法一步搞定。

阅读 1.7k
2 个回答

这样?

Math.min(...list.map(i => i.seq))

或者:

list.reduce((p, {seq}) => Math.min(p, seq), Number.MAX_VALUE)

排序:

list.sort(({seq: a}, {seq: b}) => a - b)[0].seq;

你的方法的改进:

Math.min(...list.map(({seq}) => seq));

先假设,然后枚举验证:

let min = Number.MAX_SAFE_INTEGER;
for(let {seq} of list){
    min = Math.min(min, seq);
}
撰写回答
你尚未登录,登录后可以
  • 和开发者交流问题的细节
  • 关注并接收问题和回答的更新提醒
  • 参与内容的编辑和改进,让解决方法与时俱进
推荐问题