csk_fn_size_less_than_or_equal
Use this function to see if the size of the object is less than or equal to the input
size.
- Boolean: csk_fn_size_less_than_or_equal(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_less_than_or_equal(["A", "B", "C"], "1") → false
$csk_fn_size_less_than_or_equal(["A", "B", "C"], "2") → false
$csk_fn_size_less_than_or_equal(["A", "B", "C"], "3") → true