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(["ABC"], "B") → true

    $csk_fn_greater_than_or_equal(["ABC"], "ABCD") → false

    $csk_fn_greater_than_or_equal(["ABC"], "ABC") → true