행복해지자
article thumbnail
JS - ES6 문법 파헤치기 (1)
JS 2023. 3. 9. 17:50

1. destructuring (구조 분해 할당) const player = { name: "GwonSewon", club: "proteen", address:{ city:"Busan" } } console.log(player.address.city) const {name, club, address:{city}} = player; console.log(name,club,city)//destructuring console.log(`${name} lives in ${city}!`)//template literal 예제코드 구조 분해 할당은 구조체(Object),배열(Array)등을 변수에 나누어 담는 것을 말한다. 이코드를 쓰면 조금 더 코드가 깔끔해지고 보기 쉬워진다 마지막 Console.log()는 Te..