Locate the initial and final positions of an item in a list.
import public |
Definition and Usage
The lastIndexOf() method retrieves the position of the final occurrence of a value in the list. If the item is not present in the list, it returns -1.
Syntax
public int lastIndexOf(Object item) |
Parameter Values
Parameter |
Description |
item |
Required. The item to search for in the list. |
Technical Details
Returns: |
The position of the last occurrence of the item in the list, or -1 if the item is not found. |