typeof value === 'undefined' || value === null // or value == null
interface Room { // ... prices: Price[] | null } interface Price { // ... couponPrice: Coupon | null }