Answers for "how to return the smallest value and the largest value of array in 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
2

find smallest number in array js

//Not using Math.min:
const min = function(numbers) {
  let smallestNum = numbers[0];
for(let i = 1; i < numbers.length; i++) {
    if(numbers[i] < smallestNum) {
      smallestNum = numbers[i];   
    }
  }
return smallestNum;
};
Posted by: Guest on January-05-2021

Code answers related to "how to return the smallest value and the largest value of array in javascript"

Code answers related to "Javascript"

Browse Popular Code Answers by Language