Skip to end of metadata
Go to start of metadata

You are viewing an old version of this page. View the current version.

Compare with Current View Page History

« Previous Version 11 Current »

Workflow blocks return a response when processed, which can be used as input Datasource by other blocks.

The keyword ‘return’ is used in blocks to return the response for use in the next block.

 A block with the following code will return the array [1,2,3] in the response.
var arr = [1,2,3];
return arr;

Please note that following response values will be converted to null value:

  • undefined

  • NaN

  • Infinity

  • '' - empty string

  • No labels