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