Link

Syntax

Remove(index)

Description

Use this method to remove the element at the index location.

Parameters

Name Description
index Specifies the index as an integer.

Returns

None.

Example

Local PSM_JSON:Array &oArray = create PSM_JSON:Array();
   
&oArray.AddString("the");
&oArray.AddString("remove");
&oArray.AddString("test");
   
&oArray.Remove(1);