odin-js-fundamentals-part-5/12_findTheOldest/findTheOldest.js

12 lines
318 B
JavaScript
Raw Normal View History

2024-01-11 20:52:09 +00:00
const findTheOldest = function(array) {
const oldest = array.sort((a, b) => {
let ageA = a.yearOfDeath - a.yearOfBirth;
let ageB = b.yearOfDeath - b.yearOfBirth;
return (ageA > ageB) ? -1 : 1;
})[0];
return oldest;
2024-01-11 08:52:05 +00:00
};
// Do not edit below this line
module.exports = findTheOldest;