Skip to content

Instantly share code, notes, and snippets.

@Sensiblemnd
Last active May 30, 2018 15:28
Show Gist options
  • Save Sensiblemnd/5cba51d973523101bb6aad89ca685f23 to your computer and use it in GitHub Desktop.
Save Sensiblemnd/5cba51d973523101bb6aad89ca685f23 to your computer and use it in GitHub Desktop.
Creates a function out of '!'.
//Creates a function out of '!'.
//Use this to improve code readability.
//Instead of... if (!loggedIn) {}
//..do this.. if not(loggedIn) {}
const not = value => !value;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment