Problem Statement
Which statement about null is correct?
Explanation
`null` is an explicit, intentional “no value.” `undefined` means “not assigned yet.” With `strictNullChecks`, include these in a union when you want to allow them.
Code Solution
SolutionRead Only
let val: string | null = null; // allow null explicitly in strict mode let maybe: number | undefined; // declared, not yet assigned
