CDR (Array)
- returns the tail of the array
- CAR(Array) gives the head of the array.
Description
- This function shows the tail value of the array.
- Except the head value it will show all the other values.
- This is the Opposite of CAR
ZOS
Available in ZOS also
Examples
CDR(1..10)
gives
2 3 4 5 6 7 8 9 10
CAR(1..10)
gives 1
Related Videos
See also