distress / Publications
Forum
choose beetween "&&" or "||" via boolean input
Hi, I'm not sure I'm able to explain: I'm trying to do some tests and I need to choose beetween && and || operator fore some conditions. For example: which do give best result beetwen: - if ( (condition1)&&(condition2) ) { ordersend...} - if ( (condition 1) || (condition2) ) { ordersend... } Is