function myArrayMin(arr) { return Math.min.apply(null, arr); }
const nums = [1, 2, 3]Math.min(...nums) // 1Math.max(...nums) // 3