js获取数组最大值或最小值

数组对象arr中属性num最大值最小值

// 最大值 

Math.max.apply(Math,arr.map(item => { return item.num }))

arr.sort((a, b) => { return b-a })[0].num

// 最小值 
Math.min.apply(Math,arr.map(item => { return item.num }))

arr.sort((a, b) => { return a-b })[0].num

数组中最大值最小值

Array.max = function( array ){

内容版权声明:除非注明,否则皆为本站原创文章。

转载注明出处:https://www.heiqu.com/zgzxpd.html