Hello,
As the throw command consume a lot of memory, is there any other way to handle errors in javascript action?
I tried the following code:
var mytest = '' + input1
if (mytest == 1) {return false}
This does not even compile and returns the following error:
Script execution failed. Exception: :7:2 Invalid return statement return False ^ in at line number 7 at column number 2
Any idea how to execute a return?
Yann