ES6 Destructuring Assignment
This works fine in the latest FF, others are catching up!
var [a,b] = [1,2]
[a,b] = [b,a] // Swap like the snake! :)
// a-> 2 and b -> 2
function giveMe(){
return [1,2,3];
}
var [a, ,b] = giveMe();
// a -> 1 and b -> 3 !
Written by hemanth
Related protips
Have a fresh tip? Share with Coderwall community!
Post
Post a tip
Best
#Javascript
Authors
Related Tags
#javascript
Sponsored by #native_company# — Learn More
#native_title#
#native_desc#