하루 기록

[Javascript] 자주 까먹는 Null 병합 연산자 (??) 본문

Today I Learned

[Javascript] 자주 까먹는 Null 병합 연산자 (??)

떼굴펜 2024. 5. 10. 11:21

Null 병합 연산자 (??)

좌변이 null 이나 undefined 일 때만 우변을 평가합니다.

console.log(null ?? 'right');              // 출력: right
console.log(undefined ?? 'right');    // 출력: right
console.log('' ?? 'right');                   // 출력: ''
console.log(0 ?? 'right');                  // 출력: 0