ArrayPop
Method Signature
ArrayPop(array=[modifiablearray], defaultValue=[any])Arguments
Argument
Type
Required
Description
Default
Examples
Remove the last value from an array
arr = [
1,
2,
42
];
p = arrayPop( array=arr );
writeOutput( p );
Member function version.
Additional Examples
Related
Last updated
Was this helpful?
