Check if a list includes an item, and return a boolean condition
Name | Abbreviation | Type | Access | Description |
---|---|---|---|---|
List | L | Any | List | The list to check |
Value | V | Any | Item | The value to check for |
Name | Abbreviation | Type | Access | Description |
---|---|---|---|---|
Result | R | Boolean | Item | Whether the list includes the value |
Feed in a list
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 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