how to find max number in 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: js max value of array
let numbers = [4, 13, 27, 0, -5];
Math.max.apply(null, numbers);
Example 3: find highest number in array javascript
function findHighestNumber(nums) {
let inputs = nums.filter((val, i) => nums.indexOf(val) === i)
let max = Math.max(...nums);
let min = Math.min(...nums);
return max + (-min);
}
console.log(difference([1, 7, 18, -1, -2, 9]));
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: how to return the max and min of an array in javascript
function minMax(arr) {
return [Math.min(...arr), Math.max(...arr)];
}
Example 6: how to find max number in array javascript
const array1 = [1, 3, 2];
console.log(Math.max(...array1));