Menu

gitpiper

includesAny javascript Code Snippet in 2024

arraybeginner

Last Updated: 21 July 2024

Checks if at least one element of values is included in arr.

  • Use Array.prototype.some() and Array.prototype.includes() to check if at least one element of values is included in arr.
const includesAny = (arr, values) => values.some(v => arr.includes(v));
includesAny([1, 2, 3, 4], [2, 9]); // true includesAny([1, 2, 3, 4], [8, 9]); // false

javascript snippet similar to includesAny For You in July 2024

Subscribe to our Newsletter

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

© 2024 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! ✌️