๐ Nullish Coalescing (ES2020)
const port = env.PORT ?? 3000; // 0 is respected
Pitfall: Donโt confuse with || which treats โ, 0, false as falsy.
const port = env.PORT ?? 3000; // 0 is respected
Pitfall: Donโt confuse with || which treats โ, 0, false as falsy.