DEV Community

Discussion on: Advent.js🎅🏌| #1: Contando ovejas para dormir.

Collapse
 
error404js profile image
IveMery

dejo mi solucion

function contarOvejas(ovejas) {
return ovejas.filter((oveja) => oveja.color === 'rojo' && oveja.name.indexOf("Na") !== -1)
}