Usually when I need to find the max value of an array I use this very simple code:
var max = Math.max.apply(Math, array);
However, now I have a multidimensional array in which for each line I have an array with 5 columns. Is there a similar way to find the max value for a certain column?
Right now I’m doing:
var maxFunc = function(data){
var max = 0;
data.forEach(function(value){
max = Math.max(max, value[0]);
});
return max;
};
I was curious if there was a prettier/simpler way of doing this?
I would write it as such:
The
array.mapwill transform the original array based on your picking logic, returning the first item in this case. The transformed array is then fed intoMath.max()To avoid creating a new array, you can also reduce the array to a single value:
As you can see, we need to add the initial value of
-Infinity, which is returned if the array is empty.