Javascript(let) does not set local variables when manual exit() is called
Create a javascriptlet with content `var test = 1`, and follow it with an action to flash %test. You should see a flash containing "1". Now put `exit();` at the end of the javascriptlet, and you will notice that the variable is not set when the flash action happens.
In summary, JS variables are only translated into Tasker variables when exit() is not called. Is there any way around this? Perhaps a taskerfyVariables() function that could be called before exit() ?