json.type: Difference between revisions

From RPTools Wiki
Jump to navigation Jump to search
mNo edit summary
m (Conversion script moved page json.type to Json.type without leaving a redirect: Converting page title to first-letter uppercase)
(No difference)

Revision as of 22:22, 9 February 2023

json.type() Function

Introduced in version 1.3b49
Returns a string which contains the type of JSON variable that is passed in.

Return values are

 

Usage

[h: jarr = json.type(val)]

Examples

  [h:a=json.fromStrProp("a=1;b=44;c=12")] [r:json.type(a)]
  [h:a=json.fromList("a,1,g,4")][r:json.type(a)]
  [r:json.type("some thing or other")]

Returns

 OBJECT
 ARRAY
UNKNOWN