csk_fn_size_equals
Use this function to see if the size of the object list is the same as the
input size.
- Boolean: csk_fn_size_equals(List<Object> inputList, String input)
- Input:
- List<Object> inputList: The object to be checked
- String input: The expected number of objects in the input list
- Example:
$csk_fn_size_equals(["A", "B", "C"], "3") → true
$csk_fn_size_equals(["A", "B", "C"], "2") → false