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)
本文标题:在数组对象中获得某属性的最大、最小值
本文链接:https://www.haomeiwen.com/subject/xybtgctx.html
网友评论