Calculates the opposite of the biconditional operation on two or more values.
const x = Chalkboard.bool.BICOND(true, true, true); // Returns falseconst y = Chalkboard.bool.BICOND(true, false, true); // Returns trueconst z = Chalkboard.bool.BICOND(false, false, false); // Returns false Copy
const x = Chalkboard.bool.BICOND(true, true, true); // Returns falseconst y = Chalkboard.bool.BICOND(true, false, true); // Returns trueconst z = Chalkboard.bool.BICOND(false, false, false); // Returns false
Two or more values
Calculates the opposite of the biconditional operation on two or more values.
Example