max element in array js code example
Example 1: javascript min max array
Math.max(1, 2, 3)
Math.min(1, 2, 3)
var nums = [1, 2, 3]
Math.min(...nums)
Math.max(...nums)
Example 2: max value in array javascript
const arr = [1, 5, 3, 5, 2];
const max = arr.reduce((a, b) => { return Math.max(a, b) });
const max = Math.max.apply(null, arr);
const max = Math.max(...arr);
Example 3: javascript get array min and max
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);
var minAge=getArrayMin(ages);
Example 4: max element in array
int max;
max=INT_MIN;
for(int i=0;i<ar.length();i++){
if(ar[i]>max){
max=ar[i];
}
Example 5: Math max with array js
var nums = [1, 2, 3]
Math.min.apply(Math, nums)
Math.max.apply(Math, nums)
Math.min.apply(null, nums)
Math.max.apply(null, nums)