Skip to content

Web Syntax

6.5.1. For statement with index

Looping step inside for statement with index.

  • Target: No Target is required.
  • Data Input:
    • from: Value of the index’s start. 
    • to: Value of the index’s end. 
  • Syntax:
    for index (from, to) {

    (-- another syntax --)
    } => index; 

6.5.2. For statement with data

Looping step inside for statement with test data.

  • Target: No Target is required. 
  • Data Input: Value of the test data source for loop statement
  • Syntax:
    for data (table) {

    (-- another syntax --)
    };

6.5.3. Break loop

Break current looping. Only use this keyword inside for keyword.

  • Target: No Target is required. 
  • Data Input: No data input is required.
  • Syntax: break;

6.5.4. Continue loop

Skip to the next looping round. Only use this keyword inside for keyword.

  • Target: No Target is required. 
  • Data Input: No data input is required.
  • Syntax: continue;

6.5.5. If statement

Run step if condition valid.

  • Target: No Target is required. 
  • Data Input: No data input is required.
  • Syntax:
    if ("condition") {

    (-- another syntax --)
    };