Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.
Panel
panelIconIdatlassian-info
title
iconfalse
panelIcon:info:
bgColor#E3FCEF

Please read the Terms of Use for Materials on ZennoLab

Info

This page has been translated automatically

We want to provide you with the latest help content in your language as soon as possible. This page has been translated automatically and may contain grammatical errors or inaccuracies. We want this content to be useful to you. Please let us know at the bottom of this page if this information was helpful.

View the original article in Russian: Логика

...

The logic of the If and Switch actions is implemented based on JS (JavaScript), therefore it has its own syntactic features.

...

In logic, you can use variables as operands - {-Variable.varName-}

Syntactic features

Syntactic features are based on comparison of different data types. Data in logic can be divided into two types - numeric and non-numeric (text).

...

The quotes can be either single '' or double "".

Action - If

...

Logical operators:

< - Less

...

Complement operators:

|| - Or

&& - AND

Action - Switch

...

The Switch action is an extended version of the If statement with its own peculiarities.

If the action has two threads If output - true and false, then Switch action may have several branches at the output true, and only one false - which represented a yield of Default. You can use variables in the Switch action.

...

Pause

A pause is used to interrupt the execution for a certain period of time - in seconds. You can use variables.

...

Random within the interval:

...

Alert alert

...

Pop-up window. 

It makes sense to use when executing projects in 1 thread or manually supporting the implementation of the project. When you need to get the value of a variable or any other text at intermediate stages of execution. Get information about passing control points in your project.

BadEnd

BadEnd "action" serves as a starting point, provided that at least one action from the main series is executed with an error - Start.

...

  • returning data back to lists and tables for their subsequent use without loss;

  • zeroing the values of variables;

  • creating a BlackList for invalid data.

GoodEnd

GoodEnd "action" serves as a starting point, subject to the successful completion of the entire series of actions from the main series - Start.

...