image.png

Finds an item and its index index in a list

Inputs

Name Abbreviation Type Access Description
List L Any Item The list to search
Value V Any Item The value to find

Outputs

Name Abbreviation Type Access Description
Item I Any Item The item found
Index I Number Item The index found

How-To

  1. 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

  2. Feed in a value to find

    This value is an item to be found - ie an object (object entries, object keys, etc)

  3. The result is the item that matches, and the index of that item