Link

Syntax

Pop()

Description

Use this method to remove the last element in the JSON Array.

Parameters

None.

Returns

None.

Example

Local PSM_JSON:Array &oArray = create PSM_JSON:Array();
   
&oArray.AddString("pop");
&oArray.AddString("test");
   
&oArray.Pop();