PhixFlow Help

Skip to end of metadata
Go to start of metadata

You are viewing an old version of this page. View the current version.

Compare with Current View Page History

Version 1 Next »

Function: equals()

Returns True if two values are equal otherwise returns False.

Syntax

  1. eq(value, compareValue)
  2. value == compareValue
Argument Type Description
value Any First value to compare
compareValue Any Value to be compared.

Examples

in.success == "Passed"

Returns True if in.success matches the string "Passed"

eq(in.custType == "BUSINESS")

Returns True if in.custType matches the string "BUSINESS"

$count == 5

Returns True when the $-Variable $count equals 5.

See Also

  • No labels