Skip to content

Instantly share code, notes, and snippets.

@gladchinda
Last active January 11, 2024 12:25
Show Gist options
  • Star 2 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save gladchinda/d2b1249536fd61cd8fa7c8ae6ba86343 to your computer and use it in GitHub Desktop.
Save gladchinda/d2b1249536fd61cd8fa7c8ae6ba86343 to your computer and use it in GitHub Desktop.
// These two are equivalent
!A && !B == !(A || B)
// Also these two
!A || !B == !(A && B)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment