NOTICE: All methods not exported from lodash are deprecated. you can replace with ES6
lodash
Max gets the greatest value from a list
max([ 2, 3, 5]) == 5max([{ num: 1 }, { num: 2 }], x => x.num) == { num: 2 } Copy
max([ 2, 3, 5]) == 5max([{ num: 1 }, { num: 2 }], x => x.num) == { num: 2 }
NOTICE: All methods not exported from
lodashare deprecated. you can replace with ES6See