리액트 hook 중 하나인 useState도 ( ex/ const [Id, setId] = useState('') ) 배열의 비구조화 할당이다
const Human {
name : PhoneGilDong
}
const { name } = Human 와 const name = Human.name 은 같은 의미
Human.name을 비구조화 할당으로 name이라는 변수에 PhoneGilDong을 담아주는 것이다.
구조를 분해해서 할당하는 것, 배열이나 객체의 속성을 해체하여 그 값을 개별 변수에 담아주는 것
developer.mozilla.org/ko/docs/Web/JavaScript/Reference/Operators/Destructuring_assignment
ko.javascript.info/destructuring-assignment
'basic > Vanilla.js' 카테고리의 다른 글
올림, 반올림, 내림 함수 (0) | 2021.04.22 |
---|---|
연산자로 변수 할당하기 (0) | 2021.03.18 |
filter() (0) | 2021.03.07 |
화살표 함수 (0) | 2021.02.15 |
export와 import (0) | 2021.02.12 |