Skip to content

Instantly share code, notes, and snippets.

@jasonbellamy
Created November 15, 2016 17:26
Show Gist options
  • Save jasonbellamy/1f1f4ee735bfe75a977c00632fb9d926 to your computer and use it in GitHub Desktop.
Save jasonbellamy/1f1f4ee735bfe75a977c00632fb9d926 to your computer and use it in GitHub Desktop.
Some black magic with the XOR operator to swap values.
function swap(a, b) {
a = a ^ b;
b = a ^ b;
a = a ^ b;
return [a, b];
}
swap(1, 5); //=> [5, 1]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment