image.png

Check if a list includes an item, and return a boolean condition

Inputs

Name Abbreviation Type Access Description
List L Any List The list to check
Value V Any Item The value to check for

Outputs

Name Abbreviation Type Access Description
Result R Boolean Item Whether the list includes the value

How to

  1. Feed in a list

  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 a true/false boolean.

    It will be True if the item is found in the list, and false if the item is not found in the list