Posts by Aline • 1 point
1 post
-
0
votes0
answers13
viewsQ: How to define a XOR in the JS, in the case of this question it is necessary to return as if it were a truth table of the "XOR"
function xor(true,false){ return (true && false) && (false &&true) !(true && true) && (false && false); }
javascriptasked Aline 1