csk_fn_not_equals

Use this function to confirm if two objects are not equal.
  • Boolean: csk_fn_not_equals(Object inputString1, String inputString2)
  • Input:
    • Object inputString1: The inputs whose values will be evaluated first
    • String inputString2: The inputs whose values will be evaluated second
  • Example:
    Create variables
    Variable name Custom path
    color ["red”, “blue"]
    fruit ["banana", "apple"]

    $csk_fn_not_equals(color, fruit)→ true

    $csk_fn_not_equals(color, color) → false