@vntricky right now the order of input fields is alphabetic so it is still possible to rename it in a way that it would be in a desired order ("1Use Proxy","2Proxy String",etc.) , but what is the order of actions ? @Fox In any case would be good to know how to change the order if it is possible?
Execute Code module - how it works?
-
Main/Tools/Execute code - how it actually works?
I see it works sometimes with very easy javascript logic, but it failed to do filter/push etc, works fine with devtools, but failed to understand what type of javascript works here always.
const str = [120, 121]; const match = []; for (let i = 0; i < str.length; i++) { if (str[i] === 120 || str[i] === 121) { match.push(str[i]); } } log(match); // Output: [120, 121] SyntaxError: Parse error during execution of actionany guideline will be better?
Thanks
-
@nabil said in Execute Code module - how it works?:
Main/Tools/Execute code - how it actually works?
I see it works sometimes with very easy javascript logic, but it failed to do filter/push etc, works fine with devtools, but failed to understand what type of javascript works here always.
const str = [120, 121]; const match = []; for (let i = 0; i < str.length; i++) { if (str[i] === 120 || str[i] === 121) { match.push(str[i]); } } log(match); // Output: [120, 121] SyntaxError: Parse error during execution of actionany guideline will be better?
Thanks
Don't use "let". The BAS uses an implementation that supports the ECMA-262 standard.