OR is a logical operatorNode, which combines two or more Boolean expressions to yield a Boolean value, based on the inputs' logical relationship to one another. The Node outputs a true value if at least one of its inputs is true. Otherwise, it outputs false.
This is the equivalent of the || operator in computer programming.