csk_fn_greater_than
Use this function to see if the first object is larger than the second.
- Boolean: csk_fn_greater_than(Object input1, String input2)
- Input:
- Object input1: The object to be checked:
- String input2: The object that may be smaller than the other
- Example:
$csk_fn_greater_than(["ABC"], "B") → true
$csk_fn_greater_than(["A"], "ABC") → false
$csk_fn_greater_than(["AB"], "BC") → false