Skip to content

Instantly share code, notes, and snippets.

@isabellachen
Created January 26, 2018 19:32
Show Gist options
  • Save isabellachen/cd2e5b187cd9a4abaf7655e42e109ead to your computer and use it in GitHub Desktop.
Save isabellachen/cd2e5b187cd9a4abaf7655e42e109ead to your computer and use it in GitHub Desktop.
Swap two values in place
let a = 1
let b = 2
b = [a, a=b][0]
console.log(a)//2
console.log(b)//1
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment