Answers for "function that returns the max and min numbers of an array"

11

javascript get array min and max

//get min/max value of arrays
function getArrayMax(array){
   return Math.max.apply(null, array);
}
function getArrayMin(array){
   return Math.min.apply(null, array);
}
var ages=[11, 54, 32, 92];
var maxAge=getArrayMax(ages); //92
var minAge=getArrayMin(ages); //11
Posted by: Guest on July-31-2019

Code answers related to "function that returns the max and min numbers of an array"

Code answers related to "Javascript"

Browse Popular Code Answers by Language