Recent Posts
Recent Comments
Archives
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 | 31 |
Tags
- vercel
- deep dive
- nextjs
- vscode
- 셋팅
- 스파르타코딩클럽
- 프로그래머스
- useRouter
- 코테
- error
- CORS
- js
- 모던 자바스크립트
- 자주 까먹는
- 티스토리챌린지
- 구글 로그인
- 프로젝트 셋팅
- 리터럴
- 모던자바스크립트
- 소셜 로그인
- domain
- React
- Next
- git
- 코드카타
- 오블완
- 내일배움캠프
- 코딩테스트
- 초기셋팅
- array정적메서드
- Today
- Total
파피루스
[Javascript] 자주 까먹는 Destucturing 본문
객체 Destructuring
1) 다중 속성 추출
const coffe = {
name : '커피',
price : 4000
};
const { name, price } = coffe;
console.log(name); // 커피
console.log(price); // 4000
2)함수 매개변수
function menu({name, age}) {
console.log(`오늘의 커피는 ${name}이고 가격은 ${age}원입니다.`)
}
const todayCoffe = {
name : '카페라떼',
price : 5000
};
menu(todayCoffe);
배열 Destructuring
const colors = ['red', 'orange', 'yellow', 'green'];
const [firstColor, , , forthColor ] = colors;
console.log(firstColor); // red
console.log(forthColor); // green
'Today I Learned' 카테고리의 다른 글
프로그래머스 코딩테스트, 대충 만든 자판 (Javascript) (0) | 2024.05.10 |
---|---|
[Javascript] 자주 까먹는 Null 병합 연산자 (??) (0) | 2024.05.10 |
프로그래머스 코딩테스트, 옹알이(2) (Javascript) (0) | 2024.05.08 |
[javascript] Array.concat() (0) | 2024.05.05 |
[javascript] Array.at() (0) | 2024.05.05 |