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