indexOf()
JavaScript Array indexOf() method
Last Updated : 17 Mar 2025
The JavaScript array indexOf() method is used to search the position of a particular element in a given array. This method is case-sensitive.
The index position of first element in an array is always start with zero. If an element is not present in an array, it returns -1.
Syntax
The indexOf() method is represented by the following syntax:
Parameter
element - It represent the element to be searched.
index - It represent the index position from where search starts. It is optional.Return
An index of a particular element.
JavaScript Array indexOf() method example
Let's see some simple examples of indexOf() method.
Example 1
Here, we will print the position of an element.
Test it NowOutput:
Example 2
In this example, we will provide the index value from where the search starts.
Test it NowOutput:
Example 3
Here, we will search an element which is not present in an array.
Test it NowOutput:
Subscribe to Tpoint Tech
We request you to subscribe our newsletter for upcoming updates.