DEV Community

Cover image for JavaScript find min/max from array of objects
Chris Bongers
Chris Bongers

Posted on • Originally published at daily-dev-tips.com

JavaScript find min/max from array of objects

In the previous article, we looked at finding the min/max from an array of arrays. Let's see how we can do the same with an array of objects.

Our array will look like this:

const users = [
  { name: 'Nicole', age: 31 },
  { name: 'Chris', age: 33 },
  { name: 'Yaatree', age: 2 },
  { name: 'Sanne', age: 29 },
];
Enter fullscreen mode Exit fullscreen mode

With this array, we want to find the highest and the lowest age users.
But not only return the age but the whole object.

Let's see how we can achieve that.

Finding the highest value from an array of objects

We'll use the reduce method to extract one item from the array. The cool thing about the reduce is that the initial value is optional, so that we can omit it for now.

const highest = users.reduce((previous, current) => {
  return current.age > previous.age ? current : previous;
});

console.log('highest', highest);
// { name: 'Chris', age: 33 }
Enter fullscreen mode Exit fullscreen mode

Within this reduce method, we loop over each of our items. For each item, we evaluate if the current item's age property is higher than we previously had.
If that is the case, we will return the new one. Else we keep returning the old one.

In our loop, it works like this:

  • current = Nicole nothing exists, so Nicole becomes the highest
  • current = Chris, Chris's age is higher than Nicole's, so Chris will become the returned value
  • current = Yaatree, Chris is higher, so keep returning Chris as the highest
  • current = Sanne, Chris is still higher, so keep Chris

We are ending in Chris being the highest value.

Finding the lowest value from an array of objects

We can use the same approach to find the person with the lowest age.

For that to happen, we must transform the < arrow into a > arrow.

const lowest = users.reduce((previous, current) => {
  return current.age < previous.age ? current : previous;
});

console.log('lowest', lowest);
// { name: 'Yaatree', age: 2 }
Enter fullscreen mode Exit fullscreen mode

Again to explain it more verbally, this is the flow of action:

  • current = Nicole, nothing exists, so Nicole becomes the lowest
  • current = Chris, Nicole is lower, so keep returning Nicole as the lowest
  • current = Yaatree, Yaatree is lower so return Yaatree
  • current = Sanne, Yaatree is lower so return Yaatree

The result is that we return Yaatree as the lowest.

Writing the shorthand functions

We are very explicit with the above examples by using the curly brackets and returning the object.

However, seeing we only have one line, we can write it as the shorthand function like this.

const highest = users.reduce((prev, cur) => (cur.age > prev.age ? cur : prev));

const lowest = users.reduce((prev, cur) => (cur.age < prev.age ? cur : prev));
Enter fullscreen mode Exit fullscreen mode

Way shorter, right, but it takes some of the readability in one go.

Dealing with an empty array

What happens if we pass an empty array, though?

We will get shown the following error: TypeError: Reduce of empty array with no initial value.

This happens because we omitted the initial value of the reduce.
To fix that, we can bring back the initial value.

In our case, we would want to set that as null so that it would not return an empty object.

const users = [];

const highest = users.reduce((previous, current) => {
  return previous?.age > current.age ? previous : current;
}, null);

console.log('highest', highest);
// null

// Or the shorthand:

const highest = users.reduce(
  (prev, cur) => (prev?.age > cur.age ? prev : cur),
  null
);
Enter fullscreen mode Exit fullscreen mode

You might also have spotted that for this to work, we had to swap around the previous/current check.
This is needed so that the other value is always the current.

I created a CodePen demo where you can have a play with finding the min/max from an array of objects.

Thank you for reading, and let's connect!

Thank you for reading my blog. Feel free to subscribe to my email newsletter and connect on Facebook or Twitter

Top comments (2)

Collapse
 
frankwisniewski profile image
Frank Wisniewski

mmhhh....

const users = [
  { name: 'Nicole', age: 31 },
  { name: 'Chris'},
  { name: 'Yaatree', age: 2 },
  { name: 'Sanne', age: 29 }
];

const highest = users.reduce((previous, current) => {
  return previous?.age > current.age ? previous : current;
}, null);

console.log('highest', highest);

// highest {name: 'Sanne', age: 29}
Enter fullscreen mode Exit fullscreen mode
Collapse
 
dailydevtips1 profile image
Chris Bongers

It's important to note that in the fully written version I didn't pass the null value.
And in the shorthand I turned around the returns ;)