csk_fn_list_matches

Use this function to see if the key exists within the list of objects.
  • Boolean: csk_fn_list_matches(List<Object> inputList, String key)
  • Input:
    • List<Object> inputList: The list of objects to be checked 
    • String key: The key that will be checked for in the input list
  • Example:

    $csk_fn_list_matches(["Coleman", "Digital", "Assistant"], "Coleman") → true

    $csk_fn_list_matches(["Coleman", "Digital", "Assistant"], "Requirement") → false