ArrayClear
Method Signature
ArrayClear(array=[modifiableArray])Arguments
Argument
Type
Required
Description
Default
Examples
Clear the value of an array
someArray = [
"Red",
"White",
"Green",
"Blue",
"Pink"
];
writeOutput(
// Transpiler workaround for BIF return type
(( arg1 ) => {
arrayClear( arg1 );
return true;
})( someArray ) );
Clear the value of an array
Clear value of an array using member function
Additional Examples
Related
Last updated
Was this helpful?
