Created
May 5, 2018 15:54
-
-
Save olddustysocksunderthecouch/642d190947dcb461780e8abe3d3ff85f 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
const array = [1,2,3]; | |
const [a, b] = array; | |
console.log(a); // logs: 1 | |
console.log(b); // logs: 2 | |
console.log(array); // logs: [1,2,3] |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment