JavaScript find min/max from array of arrays
Let's say we have an array of users, but each user is also an array.
For the example, we'll use the following data.
const users = [
['Nicole', 31],
['Chris', 33],
['Yaatree', 2],
['Sanne', 29],
];
As you can see, each user array holds two ob...
h.daily-dev-tips.com3 min read