const value = obj?.prop?.nestedProp;
const result = myVariable ?? defaultValue;
// firstNextBusInfo의 데이터 규칙
// undefined ?? null -> null
// { ... } ?? null -> { ... }
const firstNextBusInfo = bus.nextBusInfos?.[0] ?? null;
const secondNextBusInfo = bus.nextBusInfos?.[1] ?? null;