javascript find max number in array 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: javascript max array
var values = [3, 5, 6, 1, 4];
var max_value = Math.max(...values);
var min_value = Math.min(...values);
Example 3: javascript max array
Math.max(1, 2, 3)
Math.min(1, 2, 3)
var nums = [1, 2, 3]
Math.min(...nums)
Math.max(...nums)
Example 4: 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]));