Answers for "find highest value in array javascript"

4

get highest value from array javascript

//For Values
var arr =[1,10,3]
var min = Math.min.apply(null, arr),
    max = Math.max.apply(null, arr);

//For Objects
var arr = [{a: 1},{a: 10},{a: 3}]
var values = arr.map(val => val.a);
var max = Math.max.apply(null, values);
console.log(max)
Posted by: Guest on January-21-2021
9

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
    }
}
Posted by: Guest on May-19-2021
2

Find the maximum number of an array js

var arr = [1, 2, 3];
var max = arr.reduce(function(a, b) {
  return Math.max(a, b);
});
Posted by: Guest on October-22-2020
5

javascript largest number in array

const max = arr => Math.max(...arr);
Posted by: Guest on July-02-2020
8

get largest number in array javascript

const array1 = [1, 3, 2];

Math.max(...array1);
// expected output: 3
Posted by: Guest on August-07-2020
0

find highest value in array javascript

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

console.log(Math.max(...array)
)
Posted by: Guest on February-07-2021

Code answers related to "find highest value in array javascript"

Code answers related to "Javascript"

Browse Popular Code Answers by Language