IsNull method: JsonArray class
Syntax
IsNull(Index)
Description
Use this method to check whether the Json array element at the index location is null.
Parameters
| Parameter | Description |
|---|---|
|
Index |
Specifies the index in the Json array as an integer. |
Returns
Boolean.
Example
Local JsonArray &jArray = CreateJsonArray();
Local Boolean &bIsNull = &jArray.IsNull(2);