> ## 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

> Mengembalikan apakah value adalah Real JSON null sentinel, json.null.

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

  ## Argumen

  <ParamField path={"value"} type={"any"} required>
    Value yang di-inspect. Hanya json.null value yang mengembalikan true; Lua nil dan other values mengembalikan false.
  </ParamField>

  ## Return

  <ResponseField name={"isNull"} type={"boolean"}>
    true saat value adalah exact json.null sentinel, otherwise false.
  </ResponseField>

  ## Contoh

  Check apakah value adalah json.null sentinel, bukan 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>
