> ## Documentation Index
> Fetch the complete documentation index at: https://docs.projectreal.gg/llms.txt
> Use this file to discover all available pages before exploring further.

# json.isNull

> Gibt zurueck, ob ein value Real JSON null sentinel json.null ist.

<div className="real-function-page">
  ```lua theme={null}
  json.isNull(value: any): boolean
  ```

  ## Argumente

  <ParamField path={"value"} type={"any"} required>
    Value, der inspected wird. Nur der json.null value gibt true zurueck; Lua nil und other values geben false zurueck.
  </ParamField>

  ## Rückgaben

  <ResponseField name={"isNull"} type={"boolean"}>
    true, wenn der value der exakte json.null sentinel ist, sonst false.
  </ResponseField>

  ## Beispiel

  Pruefe, ob ein value der json.null sentinel ist statt Lua nil.

  ```lua theme={null}
  local value = json.decode("null")

  if json.isNull(value) then
      print("The value is JSON null")
  end

  print(json.isNull(nil))
  ```
</div>
