how to get largest number in array javascript code example

Example 1: find biggest number in javascript array

var peopleData = [ 
    { name: "Paul", height: 180, age: 21 },
    { name: "Johnny", height: 198, age: 43 },
    { name: "Brad", height: 172, age: 49 },
    { name: "Dwayne", height: 166, age: 15 }
];

//Find biggest height number
var maxHeight = 0;

for (var i = 0; i < heights.length; i++) {
    if (peopleData[i].height > maxHeight) {
        maxHeight = peopleData[i].height;
      //if you console.log(maxHeight); you should get 198
    }
}

Example 2: javascript largest number in array

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

Example 3: get largest number in array javascript

const array1 = [1, 3, 2];

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

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]));

Example 5: jsx return greatest number between two numbers

Math.max(5, 10);

Example 6: find highest value in array javascript

const array = [10, 2, 33, 4, 5];

console.log(Math.max(...array)
)

Tags:

Misc Example