highest value in the array code example
Example 1: 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 2: find highest value in array javascript
const array = [10, 2, 33, 4, 5];
console.log(Math.max(...array)
)