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
Your message has been sent to W3Schools.