?? - null, undefinded 일 경우
|| - falshy value일 경우
let num = 0; console.log(num || 'hello') // 'hello' 출력 console.log(num ?? 'hello') // 0 출력