Calculates the logical OR operation on two or more values.
Two or more values
const x = Chalkboard.bool.OR(false, false, true); // Returns trueconst y = Chalkboard.bool.OR(false, false, false); // Returns false Copy
const x = Chalkboard.bool.OR(false, false, true); // Returns trueconst y = Chalkboard.bool.OR(false, false, false); // Returns false
Calculates the logical OR operation on two or more values.