Skip to content

Instantly share code, notes, and snippets.

@ruan4261
Last active January 28, 2021 07:06
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save ruan4261/c60deccea88c560fe61a8e9a835f4007 to your computer and use it in GitHub Desktop.
Save ruan4261/c60deccea88c560fe61a8e9a835f4007 to your computer and use it in GitHub Desktop.
/**
* better
*/
function(a, b) {
a = a ^ b
b = a ^ b
a = a ^ b
}
/**
* standard
*/
function(a, b) {
var temp = a
a = b
b = temp
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment