Created
May 13, 2020 20:40
-
-
Save ramazankanbur/2dc9e7e68ebd25832114bc7079c8f9b5 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
| //ES5 | |
| var list = [1, 2, 3]; | |
| var a = list[0], | |
| b = list[2]; | |
| console.log(a, b); | |
| //ES6 | |
| var [a, , b] = list; | |
| console.log(a, b); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment