csk_fn_less_than

Use this function to see if the first object is smaller than the second.
  • Boolean: csk_fn_less_than(Object input1, String input2)
  • Input:
    • Object input1: The object to be checked 
    • String input2: The object that may be bigger than the other
  • Example:

    $csk_fn_less_than({"B"}, "ABC") → true

    $csk_fn_less_than({"ABC"}, "B") → false

    $csk_fn_less_than({"AB"}, "BC") → false