Skip to main content

includes

Check if a list includes a value

Holly Conrad Smith avatar
Written by Holly Conrad Smith
Updated over 2 weeks ago

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

  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

Did this answer your question?