I just started learning UiPath and have a background in Java and JavaScript.
I find myself constantly trying to type out Conditions of if statements like the following:
if:
(booleanVal && !boolVal2) || numVal == 0
a few questions:
- What does the above translate to in UiPath?
- do I need to explicitly say if “booleanVal = True” or can I just put “booleanVal” inside if condition?
- Is there a good link someone can provide to help me translate the code in my head to UiPath accepted commands?