gil00pita
6/11/2016 - 10:32 PM

Destructuring

Destructuring

//Array Destructuring
var x = 1, y = 2;
[x, y] = [y, x];
console.log(x, y); // 2,1

//Object Destructuring
var rect = { x: 0, y: 10, width: 15, height: 20 };

// Destructuring assignment
var {x, y, width, height} = rect;
console.log(x, y, width, height); // 0,10,15,20