Promptles
Data & Transformation

Null Value

beginner

Definition

A special placeholder meaning 'no data here.' Null is different from zero, an empty string, or false. Those are all real values. Null means the value is deliberately absent or unknown. Forgetting to handle null is one of the most common sources of bugs.

In the wild

A user who never set a phone number has phone: null: not phone: '' (empty string) or phone: 0. If your code tries user.phone.length without checking for null first, it crashes with 'Cannot read property length of null.'

More from Data & Transformation