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

8 lines
132 B
JavaScript

const findTheOldest = function(arry) {
let deathYear = arry
};
// Do not edit below this line
module.exports = findTheOldest;