function getMin(list) { let arr = list.map((item) => { return item[1]; }); return Math.min.apply(null, arr); } export default getMin;