Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
bitwise operators solution in Clear category for Boolean Algebra by lolucky
var boolean=(x,y,a)=>({
"conjunction": x&y,
"disjunction": x|y,
"implication":+!x|y,
"exclusive": x^y,
"equivalence":+!x^y
}[a])
Aug. 19, 2020