Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

Excerpt
hiddentrue

eq(value, compareValue) Returns True if two values are equal otherwise returns False.

Function:

...

eq()

Returns True if two values are equal otherwise returns False.

Syntax

  1. eq(value, compareValue)
  2. value == compareValue
ArgumentTypeDescription
valueAnyFirst value to compare
compareValueAnyValue to be compared.

Examples

in.success == "Passed"

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

...

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

See Also