Using the 'Set Variable' or the 'Script' blocks, how can i set multiple variables, in one go.
Example, i a
Set Variable
block:
const a=1;
const b=2;
{{sum}} = a + b;
{{product}} = a * b;
return true;
Is it possible to set multiple variables,
sum
and
product
in this way?
If not, what's a workaround for now?