Answers for "how can i know highest and lowest number in array in javascript"

7

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
2

find highest value in array javascript

const array = [10, 2, 33, 4, 5];

console.log(Math.max(...array)
)
Posted by: Guest on February-07-2021

Code answers related to "how can i know highest and lowest number in array in javascript"

Code answers related to "Javascript"

Browse Popular Code Answers by Language