Open PatrickFrankAIU opened 3 months ago
Add a function to this program called "findMinimum()" that will find the minimum element in an array of numbers.
let numbers = [3, 1, 4, 1, 5, 9, 2, 6, 5, 3, 5]; console.log(findMinimum(numbers)); // correct output should be 1
Add a function to this program called "findMinimum()" that will find the minimum element in an array of numbers.