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 lastIndexOf() method searches the array for the specified item, and returns it's position.
The search will start at the specified position, or at the end if no start position is specified, and end the search at the beginning of the array.
Returns -1 if the item is not found.
If the item to search for is present more than once, the lastIndexOf method returns the position of the last occurence.
Tip: If you want to search from start to end, use the indexOf() method
![]()
The lastIndexOf() 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 beginning |
| Type | Description |
|---|---|
| Number | The position of the specified item, otherwise -1 |
| JavaScript Version: | 1.6 |
|---|
Search an array for the item "Apple":
The result of a will be:
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.