[ES6]Destructuring assignment
Destructuring assignment구조 분해 할당이라고 번역 되어진다. 예시를 보자 var colors = ["red", "white", "orange"];var first = colors[0];var second = colors[1];var third = colors[2];console.log(first, second, third); 기존에 배열마다 변수를 선언 하기 위해선 다음과 같은 방식을 이용해야 했다. 이를 es6에서는 var colors = ["red", "white", "orange"];const [first, second, third] = colors;console.log(first, second, third); 이와 같이 사용 될 수 있다. 객체도 구조 분해 할당을 할 수 있다...