Answers for "how to find the index of the largest and smallest number in an array javascript"

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
1

get smallest value in array js

var test=[1, 2, 4, 77, 80];
console.log("Smallest number in test: "+Math.floor(Math.min(test)));
Posted by: Guest on April-24-2021

Code answers related to "how to find the index of the largest and smallest number in an array javascript"

Code answers related to "Javascript"

Browse Popular Code Answers by Language