Created
March 1, 2015 03:45
-
-
Save gsans/8a8ae9e4b2d7b966e796 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 [one, two] = [1, 2]; | |
let {a:three, b:four} = {a: 3, b: 4}; | |
console.log(one, two, three, four); // 1 2 3 4 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment