Community Tip - You can Bookmark boards, posts or articles that you'd like to access again easily! X
Hello:
I added two input parameters to the validator, both are booleans, I wired up those to a service result, in the expression field (which is too small and annoying to work, just comment here) i want to check if both are true, so I did: 'if(param1¶m2)' then the otp should it be true or false right?
Am I missing something?
Ty.
Not sure if you have a typo, but in Javascript I believe that should be "if(param1&¶m2)' two &s
Since you're checking to see if they are both true, you could simply use: param1 && param2
No need for the if statement.
Thank you Adam.