Returns an array with all of the elements reversed. The value in [0] within the input array will then exist in [n] in the output array, where n is the amount of elements in the array minus one.
arrayReverse(array)
returns array
array.reverse()
Name | Type | Required | Default | Description |
---|---|---|---|---|
array | array | Yes | The array to reverse |
Creates a new array with reversed positions
myArray = [1,2,3];
myArrayReversed = arrayReverse(myArray);
writeOutput( serializeJSON( myArrayReversed ) );
myArray = [1,2,3];
writeOutput( serializeJSON( myArray.reverse() ) );
Reverse an Array using array slice syntax adding in ColdFusion 2018
myArray = [1,2,3];
writeOutput( serializeJSON( myArray[::-1] ) );