Study/Today I Learn
2019. 4. 3.
[TIL] 2019.04.03 - Computer Science
NAND 연산자와 NOR 연산자 NAND 는 AND 연산에 NOT을 붙인 것과 같고, NOR 는 OR 연산에 NOT을 붙인 것과 같다. 일단 자주 사용할 or, and 를 함수로 만들어 놓겠다. const boolToInt = (b) => b ? 1 : 0 function and (a, b) { return boolToInt(a && b) } function or (a, b) { return boolToInt(a || b) } NAND function nand (a, b) { return boolToInt(!and(a, b)) } NOR function nor(a, b) { return boolToInt(!or(a, b)) } XOR 연산자와 XNOR 연산자 XOR(기호: ⊕, 논리식: A`B + AB`..