Last active
January 26, 2021 06:04
-
-
Save Richienb/38da53ecd76f183a5dbf04a0a0c90567 to your computer and use it in GitHub Desktop.
Javascript logic gates
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
exports.not = a => !a | |
exports.or = (a, b) => a || b | |
exports.nor = (a, b) => !a && !b | |
exports.and = (a, b) => a && b | |
exports.nand = (a, b) => !a && !b | |
exports.xor = (a, b) => a !== b | |
exports.xnor = (a, b) => a === b | |
exports.imply = (a, b) => (a && b) || !a |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment