OR 연산자(||)와 병합 연산자(??) 기초 정리
nodejs를 통해 백엔드를 만들거나 react로 프런트를 만들 때, null 이나 undefined를 피하기 위한 분기를 조금더 똑똑하게 해보자. 1. Nullish coalescing operator (??) 우선은 병합 연산자에 대해 알아보자. 병합 연산자는 왼쪽 피연산자기 null이거나 undefined의 경우는, 오른쪽 피연산자를 반환하고, 그렇지 않은 경우는 왼쪽을 반환한다. 아래의 예를 보자. const foo = null ?? 'default string'; console.log(foo); // "default string" const aoo = undefined ?? 'default string'; console.log(aoo); // "default string" const boo = ..
Web/JAVASCRIPT
2023. 1. 27. 20:14
공지사항
최근에 올라온 글
최근에 달린 댓글
- Total
- Today
- Yesterday
링크
TAG
- pandas
- next.config.js
- 자연어처리
- 클라우데라
- logout
- useState
- nextjs autoFocus
- Express
- error:0308010C:digital envelope routines::unsupported
- NextJS
- login
- read_csv
- Queue
- django
- mongoDB
- react
- nodejs
- typescript
- useHistory 안됨
- react autoFocus
- UserCreationForm
- vuejs
- 자료구조
- DFS
- Python
- Vue
- Deque
- BFS
- TensorFlow
- JavaScript
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
글 보관함