在数组对象中获得某属性的最大、最小值
2019-12-01 本文已影响0人
焚心123
var arr=[{id:1},{id:4},{id:8}];
var max=Math.max.apply(Math, arr.map((it)=> {
return it.id
}))
//获取最大值
console.log(max)
var arr=[{id:1},{id:4},{id:8}];
var max=Math.max.apply(Math, arr.map((it)=> {
return it.id
}))
//获取最大值
console.log(max)