구조분해 할당
구조분해 할당 1번 const example = {a: 123, b: {c: 135, d:146} const a = example.a; const d = example.b.d; 위의 것을 구조분해 const {a, b: {d}} =example; console.log(a); //123 console.log(d); //146 2번 arr =[1,2,3,4,5] const x = arr[0] const y = arr[1] const z = arr[4] 위의 것을 구조분해 const [x,y, , ,z] = arr; //비어 있는 것은 객체대입 안하겠다는 의미