// 구조 분해 할당 Desturcturing Assignment // 데이터 뭉치(그룹화)를 쉽게 만들 수 있다. const fruits = ['apple','banana','kiwi', 'strawberry'] const [first, second, ...others] = fruits console.log(first) // apple console.log(others) // ['kiwi', 'strawberry'] const point = [1, 2] const [x, y, z = 0] = point function createUpper(){ return ['apple', 'APPLE'] } const [title, upper] = createUpper() console.log(title) // ap..