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 }
Min gets the smallest value from a list