Skip to content

Instantly share code, notes, and snippets.

@kettanaito
Created January 25, 2020 10:26
Show Gist options
  • Save kettanaito/83f7df70020d6e5b678360aad7f2e778 to your computer and use it in GitHub Desktop.
Save kettanaito/83f7df70020d6e5b678360aad7f2e778 to your computer and use it in GitHub Desktop.
Boolean: De Morgan's Laws
!(A && B) // is equivalent to
!A || !B
!(A || B) // is equivalent to
!A && !B
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment