Hello,
I want to use the Run Javascript action with manual input, but I’d like to reference a variable from RPA in the code.
For example, let’s say I have $variableInRPA$ as a number (like 50) in RPA, and in the code I want to add 10, then return result. Like this:
(function(){
var variableInManualInput = $variableInRPA$;
var result = variableInManualInput + 10;
return result;
}());
How do I do this?
Thanks