2678-number-of-senior-citizens
DevGod needs to write a blog entry for this problem!
/**
* @param {string[]} details
* @return {number}
*/
var countSeniors = function (details) {
return details.filter(
(el) => {
return parseInt(el[11] + '' + el[12]) > 60
}
).length;
};