csk_fn_less_than_or_equal
Use this function to see if the first object is smaller than or the same as the
second.
- Boolean: csk_fn_less_than_or_equal(Object input1, String input2)
- Input:
- Object input1: The object to be checked
- String input2: The object that may be smaller than or equal to the other
- Example:
$csk_fn_less_than_or_equal(["ABC"], "B") → false
$csk_fn_less_than_or_equal(["ABC"], "ABCD") → true
$csk_fn_less_than_or_equal(["ABC"], "ABC") → true