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

> Value가 Real JSON null sentinel인 json.null인지 반환합니다.

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

  ## 인수

  <ParamField path={"value"} type={"any"} required>
    Inspect할 value입니다. json.null value만 true를 반환합니다. Lua nil 및 other values는 false를 반환합니다.
  </ParamField>

  ## 반환값

  <ResponseField name={"isNull"} type={"boolean"}>
    value가 exact json.null sentinel이면 true, otherwise false입니다.
  </ResponseField>

  ## 예제

  value가 Lua nil이 아니라 json.null sentinel인지 check합니다.

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