Synchronous logical AND and OR operators.
'&&
'||
The AND and OR operators only accept integers or booleans as input.
These operators only output a result when new values have been received by both inlets. Thus, if a new value is received by param1, no result will be computed until a value is received by param2 as well. If this is not the behavior you want, try the the && or || operator instead.