Skip to content

Instantly share code, notes, and snippets.

@thomhos
Last active October 17, 2016 12:37
Show Gist options
  • Save thomhos/ebe249c9d4415d7a63bea93dbd62cc42 to your computer and use it in GitHub Desktop.
Save thomhos/ebe249c9d4415d7a63bea93dbd62cc42 to your computer and use it in GitHub Desktop.
Switch a boolean
let foo = false;
toggle = val => val = !val;
$thing.on('click', () => foo = toggle(foo));
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment