Fixed birthdate interpolation and query.
This commit is contained in:
@@ -107,7 +107,7 @@ function getMostFrequentDate(dates) {
|
||||
}
|
||||
|
||||
function getHighest(items) {
|
||||
return items.reduce((prevItem, item) => (item > prevItem ? item : prevItem), 0);
|
||||
return items.reduce((prevItem, item) => (item > prevItem ? item : prevItem), null);
|
||||
}
|
||||
|
||||
function getLongest(items) {
|
||||
|
||||
Reference in New Issue
Block a user