数组对象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 ){