- dynamic module import
- null coalescing operator ??
a
가null
이나undefined
가 아니면a
a
가null
이나undefined
이면b
optional chaining과 관련되어 있다. || 연산자와는 반대로, null 병합 연산자인 ??는 좌변 값이 null 또는 undefined일 때만 평가한다.
a
가 null
이나 undefined
가 아니면 a
a
가 null
이나 undefined
이면 b