JavaScript Array findIndex() methodThe JavaScript array findIndex() method returns the index of first element of the given array that satisfies the provided function condition. It returns -1, if no element satisfies the condition. SyntaxThe findIndex() method is represented by the following syntax: Parametercallback - It represents the function that executes each element. value - The current element of an array. index - It is optional. The index of current element. arr - It is optional. The array on which findIndex() method operated. thisArg - It is optional. The value to use as this while executing callback. ReturnThe index of first element of the array that satisfies the function condition. JavaScript Array findIndex() method exampleLet's see some examples of findIndex() method. Example 1Let's see a simple example of findIndex() method. Test it NowOutput: 1 Example 2In this example, we will find the index of prime number using findIndex() method. Test it NowOutput: 2 Next TopicJavaScript Array |
We provides tutorials and interview questions of all technology like java tutorial, android, java frameworks
G-13, 2nd Floor, Sec-3, Noida, UP, 201301, India