In Array

Click to copy

Checks if an array contains a given element.


Example: In Array(array: [1, 2, 3], item: 2) = True.

Flow Connections

  • [Input] In - starts the block's execution.
  • [Output] Out - activates when the block has finished its execution.

Data Connections

  • [Input] Array (array, any type) - array within which to find an element.
  • [Input] Item (same type as "Array") - element to be found.
  • [Output] Result (boolean) - True if the "Array" data input contains at least 1 instance of the "Item" data input, False otherwise.