Array Destructing, Object Destructing
let state = { items: ['item1', 'item2', 'item3', 'item4'] } const { items } = state; // ['item1', 'item2', 'item3', 'item4'] 할당받는 변수에 왠 객체가 있지 ? 어떻게 동작하지 궁금했는데, value값이 할당됨을 확인할 수 있었다. let options = { title: "MVC", width: 100, height: 200 }; let {title, width, height} = options; alert(title); // MVC alert(width); // 100 alert(height); // 200 왼쪽에 기재한 title, width, height 순서대로 options 객체의 value가 할..