728x90
const {done, children, onToggle, onRemove} = this.props;
//이는 아래와 같다.
const done = this.props.done;
const children = this.props.children;
const onToggle = this.props.onToggle;
const onRemove = this.props.onRemove;
//아래와 같이 하면 키값을 변환해서 가져올 수 있다.
const {done: convertName} = this.props;
console.log(convertName); // == this.props.done
728x90
'Frontend > JavaScript' 카테고리의 다른 글
반응형 슬라이더 Swiper (0) | 2021.04.07 |
---|---|
ES6 object-shorthand 문법 (0) | 2021.03.10 |
클래스, 객체, 인스턴스 (0) | 2021.03.09 |
클로저 (0) | 2021.03.09 |
script 태그 async, defer 옵션 (0) | 2021.03.04 |