Skip to content

Instantly share code, notes, and snippets.

@myusuf3
Created September 7, 2011 05:21
Show Gist options
  • Save myusuf3/1199824 to your computer and use it in GitHub Desktop.
Save myusuf3/1199824 to your computer and use it in GitHub Desktop.
toggle operators in js
# long way of doing it.
v = (v == 0 ? 1 : 0);
# shorter less cool way of doing it needs to be initialized right.
v = 1 - v;
# god like way
v ^= 1;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment