Created
January 11, 2017 16:02
-
-
Save woliveiras/e69ff6e832e815e3cf4f7793e17ce1f5 to your computer and use it in GitHub Desktop.
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; | |
let b; | |
[a, b] = [1, 2]; | |
console.log(a); // 1 | |
console.log(b); // 2 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment