ArrayDeleteAt
Method Signature
ArrayDeleteAt(array=[modifiableArray], index=[integer])Arguments
Argument
Type
Required
Description
Default
Examples
Simple example for arrayDeleteAt function
someArray = [
"Red",
"White",
"Green",
"Blue",
"Pink"
];
arrayDeleteAt( someArray, 3 );
writeOutput( JSONSerialize( someArray ) );
Simple example with member function
Additional Examples
Related
Last updated
Was this helpful?
