Skip to content

๐Ÿ“œ Nullish Coalescing (ES2020)

const port = env.PORT ?? 3000; // 0 is respected

Pitfall: Donโ€™t confuse with || which treats โ€, 0, false as falsy.