Versions Compared

Key

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

...

Basic ExpressionArgumentsEquivalent JavaScriptNote
Is TrueNoneVAL === true
Is FalseNoneVAL === false
Less Than or Equal ToConstant Value - numeric or stringVAL <= 12.3
Greater ThanConstant Value - numeric or stringVAL > 12.3
Greater Than or Equal ToConstant Value - numeric or stringVAL >= 12.3
EqualsConstant Value - numeric, string or boolean VAL == {...}
Not Equal ToConstant Value - numeric, string or boolean VAL != {...}
ContainsConstant StringVAL.indexOf('abc') > -1

This is case sensitive.

See this Knowledge Base article on how to make it case insensitive.


Starts WithConstant StringVAL.indexOf("abc") === 0This is case sensitive. See this Knowledge Base article on how to make it case insensitive.
Ends WithConstant StringVAL.lastIndexOf("abc") === VAL.length - "abc".lengthThis is case sensitive. See this Knowledge Base article on how to make it case insensitive.

...