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
- 코테
- 소셜 로그인
- js
- React
- 프로그래머스
- 티스토리챌린지
- vscode
- 자주 까먹는
- 프로젝트 셋팅
- 코딩테스트
- CORS
- git
- deep dive
- 초기셋팅
- 코드카타
- domain
- useRouter
- 내일배움캠프
- 리터럴
- 구글 로그인
- nextjs
- 오블완
- 스파르타코딩클럽
- 셋팅
- array정적메서드
- Next
- error
- vercel
- 모던자바스크립트
- 모던 자바스크립트
- Today
- Total
목록자주 까먹는 (2)
파피루스
[Javascript] 자주 까먹는 Null 병합 연산자 (??)
Null 병합 연산자 (??)좌변이 null 이나 undefined 일 때만 우변을 평가합니다.console.log(null ?? 'right'); // 출력: rightconsole.log(undefined ?? 'right'); // 출력: rightconsole.log('' ?? 'right'); // 출력: ''console.log(0 ?? 'right'); // 출력: 0
Today I Learned
2024. 5. 10. 11:21
[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); 배열 Destructuringconst colors = ['red', 'orange', 'yellow', 'green'];con..
Today I Learned
2024. 5. 10. 11:16