index-of

Get the index of the first element in an array that returns truthy for the given value, using strict equality for comparisons.

in-array

Return true if a value exists in an array. Faster than using indexOf and won't blow up on null values.

@writetome51/array-get-indexes-of

Functions that return indexes of items in an array. Optional arguments give you more flexibility than Array.prototype.indexOf()

quiaexercitationem

Get the index of the first element in an array that returns truthy for the given value, using strict equality for comparisons.