csk_fn_list_contains
Use this function to see if the key is contained in any of the objects.
- Boolean: csk_fn_list_contains(List<Object> inputList, String key)
- Input:
- List<Object> inputList: A list of objects to be considered
- Example:
$csk_fn_list_contains(["red", "blue"], "blue") → true
$csk_fn_list_contains(["red", "blue"], "green") → false