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

> Bir value degerinin Real JSON table detection tarafindan treated as a JSON array olup olmadigini dondurur.

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

  ## Argümanlar

  <ParamField path={"value"} type={"any"} required>
    Inspect edilecek value. Non-table values false dondurur.
  </ParamField>

  ## Dönüşler

  <ResponseField name={"isArray"} type={"boolean"}>
    value, table marked as a JSON array ise veya 1'den maximum index'e kadar contiguous positive integer keys iceren unmarked table ise true. Empty unmarked tables false dondurur.
  </ResponseField>

  ## Örnek

  Bir table degerinin Real JSON encoder tarafindan treated as a JSON array olup olmadigini check et.

  ```lua theme={null}
  local items = json.array({ "one", "two" })
  local record = json.object({ name = "Real" })
  local inferred = { "one", "two" }

  print(json.isArray(items))
  print(json.isArray(record))
  print(json.isArray(inferred))
  ```
</div>
