odin-default-js-exercises/12_findTheOldest/findTheOldest.js

19 lines
413 B
JavaScript

const findTheOldest = function(people){
peopleSorted = people.sort((a, b)=>
(getAge(a) > getAge(b)) ?
-1:
1
);
return(peopleSorted[0]);
}
function getAge(person){
let death = person.yearOfDeath;
if(!death){
death = new Date().getFullYear();
};
return death - person.yearOfBirth;
}
// Do not edit below this line
module.exports = findTheOldest;