javascript find highest numbers in array code example

Example 1: javascript largest number in array

const max = arr => Math.max(...arr);

Example 2: get largest number in array javascript

const array1 = [1, 3, 2];

Math.max(...array1);
// expected output: 3

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: js return the highest and lowest number

console.log(Math.max(1, 3, 2));
// expected output: 3

console.log(Math.max(-1, -3, -2));
// expected output: -1

const array1 = [1, 3, 2];

console.log(Math.max(...array1));
// expected output: 3

Example 5: rite a function that takes in an array of numbers and outputs the maximum number.

function largestOfFour(arr) {
  return arr;
}
largestOfFour([[4, 5, 1, 3], [13, 27, 18, 26], [32, 35, 37, 39], [1000, 1001, 857, 1]]);

Tags:

Java Example