Skip to content

Instantly share code, notes, and snippets.

@Kiwka
Created May 5, 2020 13:00
Show Gist options
  • Save Kiwka/6f85f80979229d01c9f7c5d6640362da to your computer and use it in GitHub Desktop.
Save Kiwka/6f85f80979229d01c9f7c5d6640362da to your computer and use it in GitHub Desktop.
DeMorgan’s Laws
!(A || B) === !A && !B
!(A && B) === !A || !B
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment