Files
30-seconds-of-code/snippets/js/s/index-of-all.md
2023-05-10 22:35:09 +03:00

527 B

title, type, language, tags, cover, dateModified
title type language tags cover dateModified
Index of all matches snippet javascript
array
highlands 2020-10-22T20:23:47+03:00

Finds all indexes of val in an array. If val never occurs, returns an empty array.

  • Use Array.prototype.reduce() to loop over elements and store indexes for matching elements.
const indexOfAll = (arr, val) =>
  arr.reduce((acc, el, i) => (el === val ? [...acc, i] : acc), []);
indexOfAll([1, 2, 3, 1, 2, 3], 1); // [0, 3]
indexOfAll([1, 2, 3], 4); // []