Menu

gitpiper

hasOne javascript Code Snippet in 2025

arraybeginner

Last Updated: 17 January 2025

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

javascript snippet similar to hasOne For You in January 2025

Subscribe to our Newsletter

Subscribe to get resources directly to your inbox. You won't receive any spam! ✌️

© 2025 GitPiper. All rights reserved

Rackpiper Technology Inc

Company

About UsBlogContact

Subscribe to our Newsletter

Subscribe to get resources directly to your inbox. You won't receive any spam! ✌️