Search an array for the item "Apple":
The result of a will be:
Meaning that "Apple" is located at position 2 in the array.
Try it yourself »The indexOf() method searches the array for the specified item, and returns its position.
The search will start at the specified position, or at the beginning if no start position is specified, and end the search at the end of the array.
Returns -1 if the item is not found.
If the item is present more than once, the indexOf method returns the position of the first occurence.
Note: The first item has position 0, the second item has position 1, and so on.
Tip: If you want to search from end to start, use the lastIndexOf() method
![]()
The indexOf() method is not supported in Internet Explorer 8 and earlier.
| Parameter | Description |
|---|---|
| item | Required. The item to search for |
| start | Optional. Where to start the search. Negative values will start at the given position counting from the end, and search to the end. |
| Type | Description |
|---|---|
| Number | The position of the specified item, otherwise -1 |
| JavaScript Version: | 1.6 |
|---|
Search an array for the item "Apple", starting the search at position 4:
The result of a will be:
JavaScript Array Object
The perfect solution for professionals who need to balance work, family, and career building.
More than 10 000 certificates already issued!
The HTML Certificate documents your knowledge of HTML.
The HTML5 Certificate documents your knowledge of advanced HTML5.
The CSS Certificate documents your knowledge of advanced CSS.
The JavaScript Certificate documents your knowledge of JavaScript and HTML DOM.
The jQuery Certificate documents your knowledge of jQuery.
The XML Certificate documents your knowledge of XML, XML DOM and XSLT.
The ASP Certificate documents your knowledge of ASP, SQL, and ADO.
The PHP Certificate documents your knowledge of PHP and SQL (MySQL).
Your message has been sent to W3Schools.