ArrayLast
Method Signature
ArrayLast(array=[array])Arguments
Argument
Type
Required
Description
Default
Examples
Show the last element of an array
someArray = [
"first",
"second",
"third"
];
lastOne = arrayLast( someArray );
writeOutput( lastOne );
Additional Examples
Related
Last updated
Was this helpful?
