가자미의 개발이야기
[JS] 비구조할당 본문
//비구조할당
const object = { a:1};
const {a, b=2}=object;
const array = [1];
const [one, two=2]=array;
const deepObject={
state:{
information:{
name:'name',
lang: ['korean', 'japan','china']
}
},
value : 5
};
const {name, lang}=deepObject.state.information;
const {value}= deepObject;
const {
state2:{
information2:{
name,lang2
}
},
value
}=deepObject;
'HTML & CSS & JS > JS' 카테고리의 다른 글
[JS] 비동기 작업을 다루는 setTimeout() (0) | 2021.03.17 |
---|---|
[JS] spread, rest (0) | 2021.03.17 |
[JS] falthy , truthy (0) | 2021.03.17 |
[JS] 삼항연산자 (0) | 2021.03.17 |
[JS] class와 constructor, 상속 (0) | 2021.03.17 |