New: Try Voli The Bear, Fast package manager (and not only) for Windows
JavaScript
// Write findMatching(list, criteria): return every object in the list array
// whose properties match ALL key/value pairs in criteria.
// e.g. findMatching(people, { age: 30 }) returns everyone aged 30.
function findMatching(list, criteria) {

}