Skip to content

Instantly share code, notes, and snippets.

@tlemburg
Created October 1, 2014 18:55
Show Gist options
  • Save tlemburg/dcb648bb93b07c6f169a to your computer and use it in GitHub Desktop.
Save tlemburg/dcb648bb93b07c6f169a to your computer and use it in GitHub Desktop.
Doing the XOR operator in javascript.
Boolean.prototype.xor = function (other) {return (!this && Boolean(other)) || (this && !Boolean(other))}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment