Skip to content

Instantly share code, notes, and snippets.

@varun93
Created June 13, 2018 12:07
Show Gist options
  • Save varun93/a7e25aacc7315ce3a5fbbcc7614d237b to your computer and use it in GitHub Desktop.
Save varun93/a7e25aacc7315ce3a5fbbcc7614d237b to your computer and use it in GitHub Desktop.
const swapWithoutTemp = (a, b) => {
a = a ^ b;
b = a ^ b;
a = a ^ b;
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment