Skip to content

Instantly share code, notes, and snippets.

@nikitaDanilenko
Last active July 1, 2021 09:25
Show Gist options
  • Save nikitaDanilenko/1c8dacfe1f83b4faa6e54a830e7e47af to your computer and use it in GitHub Desktop.
Save nikitaDanilenko/1c8dacfe1f83b4faa6e54a830e7e47af to your computer and use it in GitHub Desktop.
Boolean simplifications
  • if (a) false else b === !a && b
  • if (a) true else b === a || b
  • if (a) a else b === a || b
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment