find max array javascript code example
Example 1: 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 2: Find the maximum number of an array js
var arr = [1, 2, 3];
var max = arr.reduce(function(a, b) {
return Math.max(a, b);
});
Example 3: Find the maximum number of an array js
function getMaxOfArray(numArray) {
return Math.max.apply(null, numArray);
}
Example 4: js max array
Math.max(...array);
Example 5: find max and min value in array javascript
var numbers = [1, 2, 3, 4];
Math.max(...numbers)
Math.min(...numbers)