javascript highest value in array code example
Example 1: js max value of array
let numbers = [4, 13, 27, 0, -5]; // Get max value of an array in Javascript
Math.max.apply(null, numbers); // returns 27
Example 2: 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 3: Find the maximum number of an array js
function getMaxOfArray(numArray) {
return Math.max.apply(null, numArray);
}
Example 4: Find the maximum number of an array js
Math.max(10, 20); // 20
Math.max(-10, -20); // -10
Math.max(-10, 20); // 20