Answers for "js array lowest"

3

js find lowest number in array

const arr = [14, 58, 20, 77, 66, 82, 42, 67, 42, 4]
const min = arr.reduce((a, b) => Math.min(a, b))
console.log(min)
Posted by: Guest on April-18-2021

Code answers related to "js array lowest"

Code answers related to "Javascript"

Browse Popular Code Answers by Language