Files
30-seconds-of-code/snippets/hasOne.md
Angelos Chalaris 8a6b73bd0c Update covers
2023-02-16 22:24:28 +02:00

528 B

title, tags, author, cover, firstSeen
title tags author cover firstSeen
Check if array has only one match array chalarangelo interior-10 2021-07-04T05:00:00-04:00

Checks if an array has only 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 only one element matches fn.
const hasOne = (arr, fn) => arr.filter(fn).length === 1;
hasOne([1, 2], x => x % 2); // true
hasOne([1, 3], x => x % 2); // false