const findLast = (arr, fn) => arr.filter(fn).pop(); module.exports = findLast;