Versions Compared

Key

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

...

Logical operations can be used to combine results of comparison operations (and other logical operations):

Operator

Description

Example

&&

logical AND

startingPointData.myNumber < 10 && startingPointData.myNumber != 3

||logical OR

startingPointData.myText != '' || startingPointData.myAnotherNumber == 0

'' (or "")

empty string. Empty text or paragraph inputs will have such value.

 

...