Array.prototype.filter() in combination with fn to find all matching array elements.Array.prototype.length to check if more than one element match fn.const hasMany = (arr, fn) => arr.filter(fn).length > 1;
hasMany([1, 3], x => x % 2); // true
hasMany([1, 2], x => x % 2); // falseSubscribe to get resources directly to your inbox. You won't receive any spam! ✌️