js Does the attached function always return the largest item in the table? code example
Example 1: 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
Example 2: jsx return greatest number between two numbers
Math.max(5, 10);