There are two methods to find the index of an element in an array in JavaScript:
indexOf()
method: It finds the first occurrence of the specified element in the array and returns its index. If the element is not found, it returns -1.index.tsx113 chars4 lines
findIndex()
method: It finds the index of the first element in the array that satisfies the provided testing function. If no element satisfies it, it returns -1.index.tsx113 chars4 lines
In both these methods, if you want to find the index of the last occurrence of a specified element in the array, you can reverse the array using the reverse()
method before using these methods.
gistlibby LogSnag