use math.min to get the minimum from the list?
https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Math/min
Math.min.apply(null, array);
sort and pick last?
Math.min(...array) R.apply(Math.min, array)
wait just spread it
Обсуждают сегодня