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最小的数是不是只能这样,有没有办法一步搞定。
这样?
或者: