[Javascript] 구조분해 할당
✨ 구조분해 할당(Destructuring)이란? 배열이나 객체의 속성을 해체하여 값을 개별 변수에 담을 수 있게 해주는 표현식이다. Python 등의 언어에도 동일한 기능이 존재한다. // 구조분해 할당 : 배열 let [a, b] = [1, 2] console.log(a) // 1 console.log(b) // 2 let x = [1, 2, 3, 4, 5]; let [y, z] = x; console.log(y); // 1 console.log(z); // 2 // 구조분해 할당 : 객체 let {a, b} = {a: 4, b: 10} console.log(a) // 4 console.log(b) // 10 let {x} = {x: 10} let {y} = {y: 20} let z = {x, y} ..
2021. 6. 5.