const obj = undefined; const arr = undefined; const func = undefined; obj?.b; arr?.[0]; func?.(); // 모두 undefined 값이며, 원래 ?.가 없으면 에러가 발생하는 상황이다.