Update findTheOldest.js
This commit is contained in:
parent
888383a44e
commit
3ecafbedae
|
@ -1,5 +1,15 @@
|
||||||
let findTheOldest = function() {
|
const findTheOldest = function(array) {
|
||||||
|
return array.reduce((oldest, currentPerson) => {
|
||||||
|
const oldestAge = getAge(oldest.yearOfBirth, oldest.yearOfDeath)
|
||||||
|
const currentAge = getAge(currentPerson.yearOfBirth, currentPerson.yearOfDeath)
|
||||||
|
return oldestAge < currentAge ? currentPerson : oldest
|
||||||
|
})
|
||||||
}
|
}
|
||||||
|
|
||||||
|
const getAge = function(birth, death) {
|
||||||
|
if (!death) {
|
||||||
|
death = new Date().getFullYear();
|
||||||
|
}
|
||||||
|
return death - birth;
|
||||||
|
}
|
||||||
module.exports = findTheOldest
|
module.exports = findTheOldest
|
||||||
|
|
Loading…
Reference in New Issue