Null

Null values are a bit like having a labeled container, but it's intentionally empty - and not just empty, but specifically marked as "nothing here."

{
    "dogName": "Max",
    "catName": null,
    "fishName": ""
}

Last updated