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