Skip to content

Instantly share code, notes, and snippets.

@Richienb
Last active January 26, 2021 06:04
Show Gist options
  • Save Richienb/38da53ecd76f183a5dbf04a0a0c90567 to your computer and use it in GitHub Desktop.
Save Richienb/38da53ecd76f183a5dbf04a0a0c90567 to your computer and use it in GitHub Desktop.
Javascript logic gates
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