What is the minimum value in the array numbers using Math.min?
const numbers = [-1, -5, -3, 0];
const minValue = Math.min(...numbers);
What is the minimum value in the array numbers using Math.min?
const numbers = [-1, -5, -3, 0];
const minValue = Math.min(...numbers);