📚 Reference
Nullish coalescing operator
??
- Nullish coalescing operator
- Nullish 병합 연산자
- 왼쪽 피연산자가 null 또는 undefined일 때 오른쪽 피연산자를 반환하고 그렇지 않으면 왼쪽 피연산자를 반환하는 논리 연산자이다.
null이거나 undefined인 경우에 ?? 이것 뒤에 문장이 실행된다.
leftExpr ?? rightExpr
- leftExpr이
null이거나 undefined일 경우에만 rightExpr이 실행된다.
- leftExpr, rightExpr는 expression이다.
- 이것과 매우 유사한 Logical OR operator가 있다.
||