Finds an item and its index index in a list
Name | Abbreviation | Type | Access | Description |
---|---|---|---|---|
List | L | Any | Item | The list to search |
Value | V | Any | Item | The value to find |
Name | Abbreviation | Type | Access | Description |
---|---|---|---|---|
Item | I | Any | Item | The item found |
Index | I | Number | Item | The index found |
Feed in a list
Note that the list input does not have [ ] brackets. This is because the list object is what is being processed here, rather than the list items
Feed in a value to find
This value is an item to be found - ie an object (object entries, object keys, etc)
The result is the item that matches, and the index of that item