Skip to content

Instantly share code, notes, and snippets.

@UltCombo
Created April 10, 2013 23:17
Show Gist options
  • Save UltCombo/5359297 to your computer and use it in GitHub Desktop.
Save UltCombo/5359297 to your computer and use it in GitHub Desktop.
input.checked = input.checked ^ 1;
input.checked = true ^ 1; //converte implicitamente true para 1; false para 0
input.checked = 1 ^ 1;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment