Files
30-seconds-of-code/snippets/js/s/array-has-many-matches.md
Angelos Chalaris 9d032ce05e Rename js snippets
2023-05-19 20:23:47 +03:00

574 B

title, type, language, tags, author, cover, dateModified
title type language tags author cover dateModified
Check if array has many matches snippet javascript
array
chalarangelo interior-2 2021-07-11T05:00:00-04:00

Checks if an array has more than one value matching the given function.

  • Use Array.prototype.filter() in combination with fn to find all matching array elements.
  • Use 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); // false