Created
January 26, 2018 19:32
-
-
Save isabellachen/cd2e5b187cd9a4abaf7655e42e109ead to your computer and use it in GitHub Desktop.
Swap two values in place
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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