csk_fn_greater_than_or_equal

Use this function to see if the first object is larger than or the same as the second..
  • Boolean: csk_fn_greater_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_greater_than_or_equal({"A"}, "B") → true

    $csk_fn_greater_than_or_equal({"AB"}, "B") → true

    $csk_fn_greater_than_or_equal({"A"}, "BC") → false