Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | |||||
3 | 4 | 5 | 6 | 7 | 8 | 9 |
10 | 11 | 12 | 13 | 14 | 15 | 16 |
17 | 18 | 19 | 20 | 21 | 22 | 23 |
24 | 25 | 26 | 27 | 28 | 29 | 30 |
Tags
- Nomad
- Nomad coder
- 느낀 점
- expo
- Clone
- 오류
- 계획
- Netflix
- react-native
- scflix
- react-hook
- javascript
- vanilla js
- HTML
- 클론코딩
- Firebase
- Nicolas
- Hook
- Vanilla
- github
- 마무리
- 바닐라 자바스크립트
- Project
- 프로젝트
- react
- TiMER
- 코코아톡
- coding
- CSS
- 자바스크립트
Archives
- Today
- Total
목록Shorthand (1)
꾸매코딩
[JavaScript] 'Destructuring - 구조 분해 할당'이란 무엇인가? (ES6)
Destructuring 구조 분해 할당 구문은 배열이나 객체의 속성을 해체하여 그 값을 개별 변수에 담을 수 있게 하는 JavaScript 표현식입니다. [MDN] 객체나 배열에서 필요한 값을 개별 변수에 저장하는 것 객체 디스트럭처링 (Object destructuring) const settings = { notifications: { follow: true }, color: { theme: "yello" }, }; // 프로퍼티 key값을 기준으로 Destructuring되어 할당된다. const { notifications: { follow }, color} = settings; console.log(follow, color); // true { theme: 'yello' } 예시 //선언 co..
JavaScript
2021. 6. 30. 18:59